What is deserialization and how do we do deserialization?

Answer Posted / javamasque

Deserialization is a process of retrieving object from byte stream. We have to fallow below steps for de-serialization
1. The object to be serialized need to implement java.io.Serializable / java.io. Externalizable interface.
2. Generate serial version id for that serializable object.
3. ObjectInputStream is used to read [readObject() or readExternal()] object.
4. FileInputStream is used to read from flat file.
5. The flat file extension should be (<file-name>.ser)

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many digits is int32?

709


Explain the importance of throwable class and its methods?

755


What is lambda expression in java?

700


What is the properties class in java programming?

715


What is difference between word and integer?

795


What is the similarity between dynamic binding and linking?

783


How do you override a method?

726


How to split arraylist elements in java?

819


What are class types in java?

782


Difference between vector and arraylist.

756


What is data type in java?

681


Explain java coding standards for variables ?

851


What are design patterns and please explain?

806


What is generic class?

830


What is the biggest integer?

784