So I know of two methods of reading or writing files in java.
The first is the read(byte[]) method provided by InputStream class.
The second is the readLine or write() method provide by the Buffered prototype.
Which is the more efficient one out of these? Which one would you recommend?