Java CharArrayReader Class The CharArrayReader is composed of two words: CharArray and Reader. The CharArrayReader class is used to read character array…
output
-
-
Java InputStreamReader An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes them into characters using…
-
Java CharArrayWriter Class The CharArrayWriter class can be used to write common data to multiple files. This class inherits Writer class. Its…
-
Java I/O Tutorial Java I/O (Input and Output) is used to process the input and produce the output. Java uses the concept…
-
Java Console Class The Java Console class is be used to get input from console. It provides methods to read texts and…
-
Java – ObjectStreamClass ObjectStreamClass act as a Serialization descriptor for class. This class contains the name and serialVersionUID of the class. Fields…
-
Java DataInputStream Class Java DataInputStream class allows an application to read primitive data from the input stream in a machine-independent way. Java…
-
Java ObjectStreamField class A description of a Serializable field from a Serializable class. An array of ObjectStreamFields is used to declare the…
-
Java DataOutputStream Class Java DataOutputStream class allows an application to write primitive Java data types to the output stream in a machine-independent…
-
Java OutputStreamWriter OutputStreamWriter is a class which is used to convert character stream to byte stream, the characters are encoded into byte…