Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package serialization;
  2.  
  3. import java.io.*;
  4.  
  5. public class SerializationReadSample {
  6.    
  7.     public static void main(String[]args) throws IOException, ClassNotFoundException{
  8.         FileInputStream fs =new FileInputStream("student.ser");
  9.         ObjectInputStream ois = new ObjectInputStream(fs);
  10.         Student st = (Student)ois.readObject();
  11.         System.out.println(st.id);
  12.     }
  13.  
  14. }