Java File Class The File class is an abstract representation of file and directory pathname. A pathname can be either absolute or…
output stream
-
-
Java – PipedReader The PipedReader class is used to read the contents of a pipe as a stream of characters. This class…
-
Java SequenceInputStream Class Java SequenceInputStream class is used to read data from multiple streams. It reads data sequentially (one by one). Java…
-
Java FileDescriptor FileDescriptor class serves as an handle to the underlying machine-specific structure representing an open file, an open socket, or another…
-
Java – PipedWriter The PipedWriter class is used to write java pipe as a stream of characters. This class is used generally…
-
Java StringReader Class Java StringReader class is a character stream with string as a source. It takes an input string and changes…
-
Java FileInputStream Class Java FileInputStream class obtains input bytes from a file. It is used for reading byte-oriented data (streams of raw…
-
Java PrintStream Class The PrintStream class provides methods to write data to another stream. The PrintStream class automatically flushes the data so…
-
Java StringWriter Class Java StringWriter class is a character stream that collects output from string buffer, which can be used to construct…
-
Java FileOutputStream Class Java FileOutputStream is an output stream used for writing data to a file. If you have to write primitive…