Why we need to serialize the object
Answer Posted / sandeep jaisawal
For an example,if you are suppose to send some data from
obe JVM to other JVM, in that case state of ojects are not
known and will not persist if you dont serialize the object
and sent over a network.
because you allocate seperate heap for seperate JVM.
So you have to tell JAVA that please treat my object, in a
different way because i have make them serialised...
Once the data(object) is serialised, you cant send it any
wr like, write in to DB,othere JVM,files etc. and later
point of time you can deserialise them and you can the same
state of the object.
Hope this help.
Sandeep j
| Is This Answer Correct ? | 39 Yes | 3 No |
Post New Answer View All Answers
Difference between final and effectively final ? Why is effectively final even required ?
When is the finally clause of a try-catch-finally statement executed?
Is string a wrapper class?
Can a class have a static inner class?
What is the benefit of lambda expressions?
What is difference between calling start() and run() method of thread?
Can a constructor be private and how are this() and super() method used with constructor?
What is subsequence of a string?
Why java is used everywhere?
What is a 16 bit word?
What is parsing and its types?
What do heavy weight components mean in java programming?
How will you serialize a singleton class without violating singleton pattern?
Can a abstract class be defined without any abstract methods?
What is java abstraction with example?