What's the difference between using a BufferedReader and a BufferedInputStream?
| ||||
|
feedback
|
|
A Any classes inheriting from | ||||
|
feedback
|
|
Bufferedreader reads data from a file as a string. BufferedOutputStream writes to a file in bytes. BufferedInputStream reads data in bytes
Sample to BufferedOutputStream:
Bufferedinputstream reads in byte:
| |||||
feedback
|
|
As the names imply, one is for reading data, the other for outputting data. | |||
|
feedback
|