Tagged Questions

Java class that reads text from a character-input stream, buffering characters so as to provide for an efficient reading of characters, arrays, and lines.

learn more… | top users | synonyms

16
votes
5answers
7k 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) ...
12
votes
4answers
11k 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 ...
10
votes
4answers
717 views

Maximum line length for BufferedReader.readLine() in Java?

I use BufferedReader's readLine() method to read lines of text from a socket. There is no obvious way to limit the length of the line read. I am worried that the source of the data can ...
9
votes
5answers
25k views

Android Reading from an Input stream efficiently

I am making an HTTP get request to a website for an android application I am making. I am using a DefaultHttpClient and using HttpGet to issue the request. I get the entity response and from this ...
7
votes
2answers
1k views

Should I buffer the InputStream or the InputStreamReader?

What are the differences (if any) between the following two buffering approaches? Reader r1 = new BufferedReader(new InputStreamReader(in, "UTF-8"), bufferSize); Reader r2 = new InputStreamReader(new ...
6
votes
4answers
358 views

How does a BufferedReader work in Java?

I am processing a number of text files line by line using BufferReader.readlline(). Two files having same size 130MB but one take 40sec to get processed while other takes 75 sec when I noticed one ...
6
votes
1answer
6k views

Reading file from assets directory throws FileNotFoundException

I'm trying to read in a text file of a bunch of words that I want to use for a word game I am writing. This list is stored in the assets directory and is a txt file. But, whenever I attempt to open ...
6
votes
5answers
370 views

How is the best way to extract the entire content from a BufferedReader object in Java?

i'm trying to get an entire WebPage through a URLConnection. What's the most efficient way to do this? I'm doing this already: URL url = new URL("http://www.google.com/"); URLConnection connection; ...
6
votes
4answers
211 views

randomizing text file read in java

I am trying to read a text file in java, basically a set of questions. With 4 choices and 1 answer. The structure looks like this: question option a option b option c option d ...
5
votes
6answers
296 views

Read in N Lines of an Input Stream and print in reverse order without using array or list type structure?

Using the readLine() method of BufferedReader, can you print the first N lines of a stream in reverse order without using a list or an array?
5
votes
3answers
2k views

What is the buffer size in BufferedReader?

What is the sense of buffer size in the constructor? BufferedReader(Reader in, int size) As i have written the program: import java.io.*; class bufferedReaderEx{ public static void main(String ...
4
votes
2answers
281 views

Clojure/Java: Most effective method for minimizing bandwidth consumption when performing complex operations on a stream of Amazon S3 data

I'm performing streaming reads of an object using BufferedReader. I need to do two things with this object: Pass it to a SuperCSV csv reader Obtain the raw lines and keep them in a (Clojure) lazy ...
4
votes
2answers
3k views

Java BufferedReader readline blocking?

I want to make an HTTP request and then get the response as sketched here: URLConnection c = new URL("http://foo.com").openConnection(); c.setDoOutput(true); /* write an http request here using a ...
4
votes
3answers
1k views

Problems with BufferedReader / PrintWriter?

I'm using BufferedReader and PrintWriter to go through each line of an input file, make a change to some lines, and output the result. If a line doesn't undergo a change, it's just printed as is to ...
3
votes
4answers
82 views

What is mark and reset in BufferedReader

I would like to know what are mark() and reset() methods in BufferedReader.I read the javadoc but as i am a beginer I was unable to understand it.
3
votes
3answers
92 views

What are the efficiency implications of using BufferedReader?

What is the difference between these 2 methods used to read characters from a file. FIRST FileReader fr = new FileReader( new File( "file.txt") ); int x = 0; while( ( x = fr.read() ) != -1 ) { ...
3
votes
3answers
449 views

How do you set a timeout on BufferedReader and PrintWriter in Java 1.4?

How does one set a timeout on a BufferedReader and a PrintWriter created using a socket connection? Here is the code I have for the server right now, which works until either the server or the client ...
3
votes
1answer
252 views

Reading EUC encoded HTML using Java on Windows

I am trying to read an HTML file which is encoded in EUC-KR from a URL. When I compile the code inside the IDE I get the desired output, but when I build a jar and try running the jar, the data I read ...
3
votes
4answers
908 views

Reading from large, continuously growing file with BufferedReader

The task I have is to (somewhat efficiently) read line-by-line through a very large, continuously growing file. Here's basically what I'm doing now: BufferedReader rd = //initialize BufferedReader ...
3
votes
4answers
1k views

Java: BufferedReader reads more than a line?

I'm making a program in Java with Sockets. I can send commands to the client and from the client to the server. To read the commands I use a BufferedReader. To write them, a PrintWriter But now I want ...
3
votes
4answers
2k views

How java.io.Buffer* stream differs from normal streams?

How buffered streams are working on the background and how it actually differs and what is the real advantage of using the same? Another Query,.. Since DataInputSytream is also Byte based, but it is ...
2
votes
3answers
87 views

Is there a way to tell java BufferedReader to read upto certain point

I am using Java BufferedReader and reading file line by line using bufferedReader.readline(). Is there a way by which I can tell that the line has this much text and Don't read it beyond that. In ...
2
votes
1answer
70 views

Double linebreak with BufferedReader on Win XP, but not other OSs…same code

I have some code that does a Runtime exec and parses the results. On linux and Windows7, the code works fine for parsing the system commands, but on Win XP I am getting a blank line ("") between each ...
2
votes
2answers
104 views

Readline is too slow - Anything Faster?

I am reading in from a stream using a BufferedReader and InputStreamReader to create one long string that gets created from the readers. It gets up to over 100,000 lines and then throws a 500 error ...
2
votes
1answer
92 views

How to clear/reset/open an input stream so it can be used in 2 different methods in Java?

Here's the code: package testpack; import java.io.*; public class InputStreamReadDemo { private void readByte() throws IOException { System.out.print("Enter the ...
2
votes
1answer
193 views

Reading a text file using BufferedReader and Scanner

I need to read the first n lines of a text file as lines (each line may or may not contain whitespace). The remainder of the text file contains an unknown number N of tokens that are ...
2
votes
2answers
111 views

Java - Scanner not scanning after a certain number of lines

I'm doing some relatively simple I/O in Java. I have a .txt files that I'm reading from using a Scanner and a .txt file I'm writing to using a BufferedWriter. Another Scanner then reads that file and ...
2
votes
3answers
73 views

can constructors have bufferedReader objects in java

In C++ its possible to have a default stream like class c { public: c(istream fin =cin):fin(fin){} } Similary can I do this in java or is this wrong practice.Or is there a better way of doing ...
2
votes
1answer
71 views

Wait until page is loaded before reading contents from a URL in Java

I am reading from a url in my java code but the page I want to read executes a command when loaded and the InputStreamReader reads the page before it has completely loaded, so my buffered reader only ...
2
votes
3answers
187 views

BufferedReader readLine skipping every second line

I'm using sockets to communicate between a server and client. For some reason though, the client skips every second line that the server has sent. Client's code: ... ...
2
votes
2answers
117 views

Reading from Socket

I am having issues getting this simple class to work. It basically connects to an IMAP server and reads the banner. But after reading all chars, it is somewhat hanging. In the debugger I can step ...
2
votes
1answer
166 views

BufferedReader.readLine() cuts off beginning of the line

I have a problem with reading a file. BufferedReader in = new BufferedReader( new InputStreamReader( new FileInputStream(file), "UTF-8")); while ((line ...
2
votes
3answers
532 views

how to read text file in jtextarea in java swing

here is my code : try { String textLine; FileReader fr = new FileReader("ad.txt"); BufferedReader reader = new BufferedReader(fr); while((textLine=reader.readLine())!=null){ textLine ...
2
votes
1answer
398 views

Making io.BufferedReader from sys.stdin in Python

How can I make a BufferedReader object from a standard file object, like sys.stdin or what you get from 'open'? (Background: I need a peek() method, which the standard file objects fail at having. ...
2
votes
4answers
518 views

BufferedReader never ready (Socket programming in Java)

I have socket already declared socket like this: serverAddr = InetAddress.getByName(this.ip); socket = new Socket(serverAddr, port); out = new PrintWriter(new BufferedWriter(new ...
2
votes
3answers
3k views

Fastest way to read a file line by line with 2 sets of Strings on each line?

What is the fastest way I can read line by line with each line containing two Strings. An example input file would be: Fastest, Way To, Read One, File Line, By Line .... can be a large file There ...
2
votes
2answers
2k views

java.io.IOException: BufferedInputStream is closed in Android 2.3

The following code is working fine in Android 1.5-2.2.1 but it's not in 2.3 and higher. BufferedReader rd; rd = new BufferedReader(new InputStreamReader(connection.getInputStream())); StringBuffer ...
2
votes
2answers
566 views

BufferedReader in Python 2.x vs Python 3.x

I have a program that runs in Python 2 and Python 3, but there is a drastic difference in speed. I understand a number of internal changes were made in the switch, but the difference in ...
2
votes
6answers
2k views

Java: reading strings from a random access file with buffered input

I've never had close experiences with Java IO API before and I'm really frustrated now. I find it hard to believe how strange and complex it is and how hard it could be to do a simple task. My task: ...
2
votes
3answers
669 views

Reading a file into a multidimensional array

I want to read in a grid of numbers (n*n) from a file and copy them into a multidimensional array, one int at a time. I have the code to read in the file and print it out, but dont know how to take ...
2
votes
1answer
348 views

Trying to get each line of a text file to be an arraylist

alright so I am trying to read a text file. and then split it up into lines which actually represent processes in a process table arraylist. then i want to split up all the tokens in the line and ...
2
votes
2answers
506 views

BufferedReader seems to only read last line of file

I'm trying to write a method to take a multiline tab-delimited file and return the contents of that file as an arraylist of String arrays (each line is a String[], and each such String[] is an element ...
2
votes
1answer
913 views

Skipping the BufferedReader readLine() method in java

Is there a easy way to skip the readLine() method in java if it takes longer than, say, 2 seconds? Here's the context in which I'm asking this question: public void run() { boolean looping = ...
2
votes
3answers
259 views

Sorting a text file by date - Date looks like DD/MM/YYYY

I am trying to sort the dates from the earliest to the latest. I was thinking about using the bufferedreader and do a try searching the first 2 characters of the string and then the 4th and 5th ...
2
votes
6answers
4k views

How to know if a BufferedReader Stream is closed

I have two threads in Java. First thread is closing a bufferedreader (br.close()) When the second thread does a read on the same reader I get an IOException (Stream Closed) I get this exception ...
2
votes
3answers
2k views

Why use BufferedReader in this case?

What is the difference between using a BufferedReader around the StringReader in the following code vs using the StringReader only? By loading up the DOM in line 2 of both examples, it seems like the ...
1
vote
3answers
55 views

Java How to read a file line by line. Each line is mixed with both ascII and binary

I have a file have multiple lines. For each line the format is "String A" "String B" "binary data" What I want to do is adding "String C" in front of each line "String C" "String A" "String B" ...
1
vote
1answer
28 views

Custom BufferReader which reads and returns the string till a pattern is met

java BufferReader has a method readLine which reads till '\n' or '\r' is read and then returns the line string. Example: InputStreamReader isr = new InputStreamReader(socket.getInputStream()); ...
1
vote
2answers
70 views

BufferedReader returning null in Android application but not in Java application

I've written a application in Java which I am trying to port to Android now, but for some reason when using the readLine() method from the BufferedReader it is returning null. I have tested the code ...
1
vote
4answers
59 views

Reading in text file in Java

I wrote some code to read in a text file and to return an array with each line stored in an element. I can't for the life of me work out why this isn't working...can anyone have a quick look? The ...

1 2 3 4 5