What's the difference between using a BufferedReader and a BufferedInputStream?

link|improve this question

67% accept rate
feedback

3 Answers

A BufferedReader is used for reading character data. A BufferedOutputStream is used for writing binary data.

Any classes inheriting from Reader or Writer deal with 16-bit unicode character data, whereas classes inherting from InputStream or OutputStream are concerned with processing binary data. The classes InputStreamReader and OutputStreamWriter can be used to bridge between the two classes of data.

link|improve this answer
feedback

Bufferedreader reads data from a file as a string. BufferedOutputStream writes to a file in bytes. BufferedInputStream reads data in bytes
Sample to Bufferedreader:

try {
       BufferedReader br = new BufferedReader(new FileReader(new File(your_file));
       while ((thisLine = br.readLine()) != null) { 
         System.out.println(thisLine);
       }
     } 

Sample to BufferedOutputStream:

//Construct the BufferedOutputStream object
        bufferedOutput = new BufferedOutputStream(new FileOutputStream(filename));

        //Start writing to the output stream
        bufferedOutput.write("Line 1".getBytes());
        bufferedOutput.write("\r\n".getBytes());
        bufferedOutput.write("Line 2".getBytes());
        bufferedOutput.write("\r\n".getBytes());

Bufferedinputstream reads in byte:
Sample :

 //Construct the BufferedInputStream object
        bufferedInput = new BufferedInputStream(new FileInputStream(filename));

        int bytesRead = 0;


        while ((bytesRead = bufferedInput.read(buffer)) != -1) {                

            String chunk = new String(buffer, 0, bytesRead);
            System.out.print(chunk);
        }
link|improve this answer
You reference files in your answer but of course the BufferedReader / BufferedOutputStream could be reading from / writing to any destination, not just a file. – Adamski Oct 23 '11 at 21:22
You're right. but just samples to show how he can use... (more practical way to understand) – Kayser Oct 23 '11 at 21:30
feedback

As the names imply, one is for reading data, the other for outputting data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.