Serialization and Deserialization in Java Serialization Serializable Interface Example of Serialization Example of Deserialization Serialization with Inheritance Externalizable interface Serialization and static…
Java IO Tutorial
-
-
Java Scanner Scanner class in Java is found in the java.util package. Java provides various ways to read input from the keyboard,…
-
Java transient Keyword In Java, Serialization is used to convert an object into a stream of the byte. The byte stream consists…
-
Java ByteArrayInputStream Class The ByteArrayInputStream is composed of two words: ByteArray and InputStream. As the name suggests, it can be used to…
-
Java FilterReader Java FilterReader is used to perform filtering operation on reader stream. It is an abstract class for reading filtered character…
-
Java ByteArrayOutputStream Class Java ByteArrayOutputStream class is used to write common data into multiple files. In this stream, the data is written…
-
Java FilterWriter Java FilterWriter class is an abstract class which is used to write filtered character streams. The sub class of the…
-
Java CharArrayReader Class The CharArrayReader is composed of two words: CharArray and Reader. The CharArrayReader class is used to read character array…
-
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…