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
How many digits is int32?
Explain the importance of throwable class and its methods?
What is lambda expression in java?
What is the properties class in java programming?
What is difference between word and integer?
What is the similarity between dynamic binding and linking?
How do you override a method?
How to split arraylist elements in java?
What are class types in java?
Difference between vector and arraylist.
What is data type in java?
Explain java coding standards for variables ?
What are design patterns and please explain?
What is generic class?
What is the biggest integer?