Stack-Repo
/
data
/train
/akash-coded
/FSD_Java
/Lesson-3
/Serializarion and Deserialization
/Examples
/Deserialization.java
import java.io.*; | |
class Deserialization { | |
public static void main(String args[]) throws IOException { | |
ObjectInputStream in = null; | |
FileInputStream fin = null; | |
try { | |
// Reading the object file | |
fin = new FileInputStream("f.txt"); | |
// Creating stream to read the object | |
in = new ObjectInputStream(fin); | |
Student s = (Student) in.readObject(); | |
// printing the data of the serialized object | |
System.out.println(s.rollNumber + " " + s.name); | |
} catch (Exception e) { | |
System.out.println(e); | |
} finally { | |
// closing the stream | |
in.close(); | |
// closing the file input stream | |
fin.close(); | |
} | |
} | |
} | |