1
vote
4answers
74 views
Reading and writing to console in Java
What is the most efficient class to use to read from and write to console in Java?
1
vote
3answers
64 views
socket behavior on read
the client writes 5 bytes to the socket after every 1 second.
the server continuously reads from the socket. the buffer at the server end is 10 bytes long. so the function looks li …
0
votes
1answer
25 views
API’s to extract 7z files in .net
Is there any API available, that can be used in .net that can read/extract 7z files ?
1
vote
3answers
69 views
How to read/write nodes and child nodes from xml file in c# maybe using xpath?
Hello,
Maybe somebody could help me. I need a two methods.
The first should open a xml file and get all nodes with the given parameter ie.:
XML file (file.xml):
<Menu id="1 …
-1
votes
7answers
176 views
Java quick sort, reading from a user input file into any array (to be sorted)
What's up y'all,
I am trying to write some code in Java that will read in the numbers from a file (one # on each line of .txt file) put them into an array, and then run quick sort …
3
votes
9answers
297 views
Processing huge text files
Problem:
I've a huge raw text file (assume of 3gig), I need to go through each word in the file
and find out that a word appears how many times in the file.
My Proposed Solution:
…
0
votes
2answers
82 views
java read file from network device
can someone help me to find a tutorial or sample java code for
reading file from a any machine which is same network
0
votes
4answers
59 views
What is the difference between read and pread in unix?
What is the difference between the functions read() and pread() in unix?
When choosing between them, what points should I take into consideration?
I googled for the difference bet …
0
votes
4answers
43 views
Read in external links in PHP
I know how to do this in Ruby, but I want to do this in PHP. Grab a page and be able to parse stuff out of it.
1
vote
6answers
45 views
InputMissMatchException
I want to read data about MMORPG characters from a .txt file and then filter on experience (minimum experience). But I'm getting this exception, which I know the meaning of but I r …
1
vote
4answers
139 views
Reading Excel file (.xls) in Java
I want to read text from excel file in J2SE using NetBeans. I found an article here about using Apache POI and JExcelApi, but I'd prefer not depending on external packages. if poss …
0
votes
1answer
22 views
Java libraries for reading meta data from .img, .osc and .mccd files
I need to read meta data from .img, .osc and .mccd files.
Can you anyone recommend any libraries or provide any pointers as to how I would go about doing this. Eventually I need t …
1
vote
4answers
65 views
explanation of stackoverflow when using read on a small file and a questionable workaround
Hello stackoverflow,
I hope the question explained my problem. I would also be grateful if the workaround that "works" is explained.
The traditional way of reading a file (that i …
0
votes
4answers
48 views
default root folder for an eclipse project
I am attempting to read a file as follows:
File imgLoc = new File("Player.gif");
BufferedImage image = null;
try{
image = ImageIO.read(imgLoc);
}
catch(Exception ex)
{
S …
1
vote
2answers
55 views
Checking a file for a certain string in Java.
I'm trying to have my application read through a text file and look for a string. If the string does not exist, it makes it using println. The only problem I'm having is that it do …
