Skip to main content

Serialization and deserialization in java with examples

Serialization and Deserialization is one of the commonly used concept in java to store object in any other location like, File, DB, Cloud,...etc and vice versa is called as Deserialization. In other words, Java provides a mechanism called Serialization to persist Java object into a file, database, network, process or any other system. Serialization makes object into an ordered or Serialized stream of bytes. That includes the object data as well as object type of data stored. Before moving further in Serialization and Deserialization in java, have a look at Input and Output streams.

If you need to make your object as Serialized, the object class should be implemented from Serializable interface. Serializable is one of the interface called as marker interface in java. Marker interface is nothing but an interface which has no methods or fields to implement but it will do some functionality. Serializable interface is part of java.io package in java.

ObjectOutputStream and ObjectInputStream classes are high level streams that contains the methods for Serializing and Deserializing and object. ObjectOutputStream class has many methods for Serializing an object. But most commonly used method is writeObject().

private void writeObject(ObjectOutputStram os)throws IOException{

}

ObjectInputStream has few methods available in it. We use readObject() method for Deserializing an object. The below is the syntax for readObject() method.

private void readObject(ObjectInputStream oi)throws IOException, ClassNotFoundException{

}

What is the need of Serialization?
As I already explained, Serialization is used to store object from one location to another location either it is in a File or DB or into Network. Now, the problem is network and hard disk will not understand Java objects, it will understand only Bits and Bytes. Serializable interface helps to convert Java object in Bytes and share over the network or saving into a file. Deserialization is vice versa to Serialization, conversion of byte code into normal Java code.

SerialVersionUID: SerialVersionUID is used to make sure same class object is loaded during Deserialization. SerialVersionUID is used for version control of object.

Car.java:

package com.javatbrains.serialization;

import java.io.Serializable;

public class Car implements Serializable {
     private static final long serialVersionUID = -7617174890882744651L;
     private int number;
     private String name;
     private double cost;

     public int getNumber() {
          return number;
     }

     public void setNumber(int number) {
          this.number = number;
     }

     public String getName() {
          return name;
     }

     public void setName(String name) {
          this.name = name;
     }

     public double getCost() {
          return cost;
     }

     public void setCost(double cost) {
          this.cost = cost;
     }
}

Car.java class represents a simple bean class in java. Car class implemented an interface called Serializable. When a class implements Serializable interface then that class available for Serialization. In below class Serializing Car object into a file.

Serialization.java:

package com.javatbrains.serialization;

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;

public class Serialization {

     public static void main(String[] args) {
          try {
              Car car = new Car();
              FileOutputStream fos = new FileOutputStream("D:/Car.ser");
              ObjectOutputStream oos = new ObjectOutputStream(fos);
              for (int i = 0; i < 5; i++) {
                   car.setNumber(i);
                   car.setName("car " + i);
                   car.setCost(100.00 + i);
                   oos.writeObject(car);
              }
              fos.close();
              oos.close();
              System.out.println("Serialization is done.");
          } catch (IOException ie) {
              ie.printStackTrace();
          }
     }
}

If the above class executed successfully, it will print console with the message of Serialization is done otherwise it will print some IOException. Before executing the program, you make sure you have given the proper file path in FileOutputStream.

Static and Transient fields in Serialization:
Static variables are not getting Searialized because static variables are not part of the Object, those are part of the Class. Transient is a keyword in java. It is also called as modifier of instance variable of a class. It specifies that the transient variable is not part of the persistent state of an object and that never serialized during serialization.

Deserialization in Java:
Deserialization is a quit opposite process of Serialization. If we need to get persisted object into normal Java object we can use Deserialization in java. The below program will give you an overview of Deserializing Car class object.

package com.javatbrains.serialization;

import java.io.FileInputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.ArrayList;
import java.util.List;

public class Deserialization {
     public static void main(String[] args) {
          Car car = null;
          List<Car> cars = new ArrayList<Car>();
          try {
              FileInputStream fis = new FileInputStream("D:/Car.ser");
              ObjectInputStream ois = new ObjectInputStream(fis);
              for (int i = 0; i < 5; i++) {
                   car = (Car) ois.readObject();
                   cars.add(car);
              }
              ois.close();
              fis.close();
          } catch (IOException ie) {
              ie.printStackTrace();
              return;
          } catch (ClassNotFoundException cf) {
              System.out.println("Car class is not found: ");
              cf.printStackTrace();
              return;
          }
          System.out.println("Deserialized objects: ");
          for (Car carr : cars) {
              System.out.println("Number: " + carr.getNumber());
              System.out.println("Name: " + carr.getName());
              System.out.println("Cost: " + carr.getCost());
          }
     }
}

As on when we execute the above program, that will Deserialize all the objects from the file and print values in Console.

Comments

Popular posts from this blog

Multithreading in java with example

Multithreading  is one of the most important concept in core java. In this article we will learn what is multithreading? , what is the use of it? and What is the use of Synchronization and when to use it?  with detailed examples. At a time, two or more threads are accessing the same object is called as Multithreading  in Java .  First, we will create two threads for two objects. It is also possible to run two or more threads on a single class object. In this case, there is a possibility to get unreliable results. If the two threads are perform same task, then they need same object to be executed each time. For your better understanding, take an example of any reservations like, railway, movie ticket booking,etc. Let us think only one berth is available in a train and two passengers are asking for that berth. The first person has sent a request to allocate that ticket/berth to him. At the same time, the second person also sent a request to allocate that ...

Git installation for AngularJS 2 in Windows 10

Download Git latest version from https://git-scm.com/downloads or you click on the below link to download directly for windows https://git-scm.com/download/win . Once download completes, click on executable file to start installation process and choose Yes to allow the software installation in windows 10. Click on Next button to continue further installation. Browse the isntallation directory and click on Next button to continue. Select the list of components which you want to be installed and click on Next button to proced further installation. Type the shortcut name for Start menu and click on Next button. Select how you want to use the Git and click on Next button. For Windows no need to change anything, let it be the default one. Choose the Use the OpenSSL library and click on Next button. Select how should Git treat line ending in text files and click on Next button. Select which terminal emulator to use with Git and click on Next button. Configure extr...

JNDI configuration for Tomcat 9 with Oracle

In this article, I am going to place the required source code to get data from the table by using the JNDI configuration. Below are the environment details that I have configured currently. Windows - 7 Oracle - 10g Tomcat - 9 JDK - 8 Eclipse Oxygen Ojdbc6 jar required First, we need to create the Dynamic Web Project. If you don't know how to do <Click Here>. I have faced a lot of issues before getting the output like 405, No driver class to load, etc. I am using JSP & Servlets in the current explanation. Before started writing the application logic, we need to do the below configuration in the installed tomcat directory. Place OJDBC6.jar in the Tomcat LIB directory. Add this Resource under <GlobalNamingResources> in Server.xml file which is present under the conf directory in Tomcat. < Resource name = "jdbc/myoracle" global= "jdbc/myoracle" auth = "Container" type= "javax.sql.DataSource" driverClass...