ObjectInputStream in Java
ObjectInputStream enables us to read Java objects from an InputStream. We wrap an InputStream in a ObjectInputStream and then you[…]
Read moreAmplify your java knowledge with javagyansite
ObjectInputStream enables us to read Java objects from an InputStream. We wrap an InputStream in a ObjectInputStream and then you[…]
Read moreObjectOutputStream enables us to write Java objects to an OutputStream. You wrap an OutputStream in a ObjectOutputStream and then you[…]
Read moreBuffering can speed up IO quite a bit. Rather than writing one character at a time to the network or[…]
Read moreBufferedOutputStream extends FilterOutputStream. BufferedOutputStream implements a buffered output stream. By setting up such an output stream, an application can write bytes[…]
Read moreBufferedReader extends Reader. Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of[…]
Read moreBufferedInputStream extends FilterInputStream. A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the input and to support[…]
Read moreWe use FileWriter to write characters to a file. FileWriter works much like the FileOutputStream except that a FileOutputStream is[…]
Read moreFileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream. FileReader extends[…]
Read moreIt extends OutputStream. A file output stream is an output stream for writing data to a File or to a[…]
Read moreFileInputStream extends InputStream. A FileInputStream helps us to read the contents of a file as a stream of bytes. Methods in[…]
Read more