What is meant by serialisation and deserialisation?

Answers were Sorted based on User's Feedback



What is meant by serialisation and deserialisation?..

Answer / niranjanravi

Serialisation is the process of taking up an object and
converting it to a format which it can be transported
across a network or persisted to a storage location.The
storage location is as simple as using a file or a
database.the serialised file format contains the object's
state information.De-Serialisation is the process of re-
constructing the object from serialised state back to it's
original state.

Is This Answer Correct ?    6 Yes 0 No

What is meant by serialisation and deserialisation?..

Answer / ravikiran(aptech mumbai)

serialization is a process of saving the object into an
outputstream
deserializaton is a process of retrieving the object from
the outputstream

Is This Answer Correct ?    2 Yes 1 No

What is meant by serialisation and deserialisation?..

Answer / vijayakumar chinnasamy

Serialization : means storing the object into persistenece
storage like seconday memory ,files.

Deserialization : means restoring the persistent object.

Is This Answer Correct ?    2 Yes 1 No

What is meant by serialisation and deserialisation?..

Answer / veerababu

It's process of coverting object data into respective byte
content is called serialization....Deserialiation is
process of converting byte content into object form

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is the difference between length and size in java?

1 Answers  


Write a code to create a trigger to call a stored procedure

1 Answers  


Can private class be inherited in java?

1 Answers  


Java support call by reference (pass by reference) ?

1 Answers   HCL,


When is the finally clause of a try-catch-finally statement executed?

1 Answers  


What is the argument type of main() method?

2 Answers  


How core java/j2ee project performance can be measured ?

1 Answers  


What about interrupt() method of thread class ?

1 Answers  


What are unchecked exceptions in java?

1 Answers  


Every class extends object but why it is not possible for every object to invoke clone() method. ideally protected methods should be accessible from sub classes. isn't it?

2 Answers  


How to do validation of the fields in any project ?

2 Answers  


What are java packages? What is the significance of packages?

1 Answers  


Categories