BufferedInputStream BufferedOutputStream

Using Buffers to Enhance the Performance Buffering of streams increases the performance to higher extents of few thousand times. For buffering, two streams exist in java.io package in byte streams category – BufferedInputStream and BufferedOutputStream. These high-level classes are subclasses of FilterInputStream and FilterOutputStream and their functionality is to increase the performance with buffer. These …

BufferedInputStream BufferedOutputStream Read More »