Tagged Questions

3
votes
2answers
136 views

Which API in Java to use for file reading to have best performance?

In my place where I work, used to have files with more than million rows per file. Even though the server memory are more than 10GB with 8GB for JVM, sometimes the server get hanged for few moments …
1
vote
4answers
189 views

Difference between java.io.PrintWriter and java.io.BufferedWriter?

Please look through the below code, // A.java File file=new File("blah.txt"); FileWriter fwriter=new FileWriter(file); PrintWriter pwriter=new PrintWriter(fwriter); //B.java File file=new …
1
vote
7answers
293 views

FileReader class in C#

Hello everybody. I am looking for fast class for to work with text files and comfortable reading different object (methods like NextInt32, NextDouble, NextLine, etc). Can you advice me something? …
6
votes
5answers
369 views

Do I need to close() both FileReader and BufferedReader?

I'm reading a local file using a BufferedReader wrapped around a FileReader: BufferedReader reader = new BufferedReader(new FileReader(fileName)); // read the file // (error handling snipped) …
0
votes
5answers
478 views

Java - is it possible to read a file line by line, stop, and then immediately start reading bytes where I stopped?

I'm having an issue trying to parse the ascii part of a file, and once I hit the end tag, IMMEDIATELY start reading in the bytes from that point on. Everything I know in Java to read off a line or a …
2
votes
4answers
364 views

Python - How to edit hexadecimal file byte by byte

I want to be able to open up an image file and extra the hexadecimal values byte-by-byte. I have no idea how to do this and googling "python byte editing" and "python byte array" didn't come up with …
0
votes
2answers
84 views

how to read a snippet from a file using groovy

I am reading a file in groovy using this simple sample code file.eachLine {line-> // do something with line } For example my file has some data like this blah blah blah This is some more …
1
vote
4answers
376 views

Android: Is it more efficient to use a text file or an XML file to store static data

I have some reference data in a text file (~5MB) that I want to use with might android application. The file is of the format: 1|a|This is line 1a 1|b|This is line 1b 2|a|This is line 2a 2|b|This is …
1
vote
4answers
509 views

GZIPInputStream reading line by line

Hello Folks, I have a file in .gz format. The java class for reading this file is GZIPInputStream. However, this class doesn't extend the BufferedReader class of java. As a result, I am not able to …
-1
votes
3answers
275 views

What does a ten digit return number mean? (C++)

When I run a program using the read part of fstream, I get this return value: -1073741819 the actual function is part of a corrupt for loop, which I will try to explain: for(int i = 0; i < …
0
votes
4answers
283 views

Read & Update filestream

I have a little utility that does a search of a number of files. I had to create it because both Google & Windows desktop searches were not finding the appropriate lines in files. The searching …
1
vote
3answers
198 views

Confirming from a JUnit test that a FileReader was closed properly

I'm writing some Java code that uses a FileReader to load data from a few input files. I'm using TDD pretty heavily, and I'd like to add some tests that ensure that I'm cleaning up properly by calling …