About 1,410,000 results
Open links in new tab
  1. How to use BufferedReader in Java - Stack Overflow

    May 9, 2019 · How to use BufferedReader in Java [closed] Asked 12 years, 5 months ago Modified 6 years, 5 months ago Viewed 396k times

  2. java - Using BufferedReader to read Text File - Stack Overflow

    I'm having problems with using the BufferedReader I want to print the 6 lines of a text file: public class Reader { public static void main (String []args) throws IOException { FileReader in...

  3. reading text file with utf-8 encoding using java - Stack Overflow

    Feb 17, 2013 · I have problem in reading text file with utf-8 encoding I'm using java with netbeans 7.2.1 platform I already configured the java project to handle UTF-8 javaproject==>right …

  4. java - Reading lines with BufferedReader and checking for end of …

    Reading lines with BufferedReader and checking for end of file Asked 12 years, 2 months ago Modified 3 months ago Viewed 107k times

  5. java - Reading CSV file using BufferedReader resulting in reading ...

    I'm trying to read a csv file from my java code. using the following piece of code: public void readFile() throws IOException { BufferedReader br = new BufferedReader(new …

  6. Using BufferedReader to take input in java - Stack Overflow

    Jan 25, 2012 · I have been using the Scanner object to take in input until now and would like to learn how the BufferedReader works. I have tried it and it seems to be working only for …

  7. java - Read all lines with BufferedReader - Stack Overflow

    Mar 11, 2015 · java bufferedreader infinite-loop inputstreamreader edited Mar 11, 2015 at 20:00 dbank 1,213 1 18 29

  8. Java reading a file into an ArrayList? - Stack Overflow

    How do you read the contents of a file into an ArrayList<String> in Java? Here are the file contents: cat house dog . . .

  9. java - What is the buffer size in BufferedReader? - Stack Overflow

    Jun 23, 2015 · As per this java documentation, default buffer size is 8192 characters capacity. Line size is considered as 80 chars capacity. 8192 buffer size is sufficient for smaller file sizes. …

  10. What is the difference between Java's BufferedReader and ...

    Sep 11, 2011 · BufferedReader is a class in Java that reads text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, lines and arrays.