java.io.BufferedInputStream

java.io.BufferedInputStream is a class that represents a buffered input stream that reads bytes of data from a file.

Hints

Using a BufferedInputStream object is usually more efficient than using a FileInputStream object in your applications. If your application still needs better performance, consider writing your own buffered input stream object.

Related Topics:

java.io.FileInputStream

java.io.InputStream

java.io.OutputStream

java.io.FileOutputStream

java.io.BufferedOutputStream