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 BufferedInputStream Class Java BufferedInputStream class is used to read information from stream. It internally uses buffer mechanism to make the performance…
-
Java FileReader Class Java FileReader class is used to read data from the file. It returns data in byte format like FileInputStream…
-
Java PushbackReader Class Java PushbackReader class is a character stream reader. It is used to pushes back a character into stream and…
-
Java BufferedOutputStream Class Java BufferedOutputStream class is used for buffering an output stream. It internally uses buffer to store data. It adds…
-
Java FileWriter Class Java FileWriter class is used to write character-oriented data to a file. It is character-oriented class which is used…
-
Java – RandomAccessFile This class is used for reading and writing to random access file. A random access file behaves like a…
-
Java BufferedReader Class Java BufferedReader class is used to read the text from a character-based input stream. It can be used to…