what is meant by serialization?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
Serialization is the process of translating a state of an
object into a stream of bytes.
The process of reconstructing an object from a stream of
bytes that represent its serialized state is called
de-serialization.
Serialization is mostly used when the state of objects have
to be written to persistent storage for later retrieval or
for transfer over a network.
| Is This Answer Correct ? | 60 Yes | 4 No |
Answer / animesh
Serialization is the process of storing object properties.
To avoid serialization we use transient modifier.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / shakir khan
serialization is the mechanism by which youcan save
the state of an object by converting in to a byte stream.
| Is This Answer Correct ? | 13 Yes | 7 No |
Answer / arpit
Serialization is used for persistence it is done by
implementing serializable interface which is a wrapper
class does not have any method
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / lala
serialization is the process of storing object in byte
Stream over network or file.to avoid serialization we have
to declare the variable as trasient.Inorder to make object
serialisation class implement serilazable
interface.Serializable Interface is an Marker
interface.Marker interface doesn't contain any method.so
how it works? it will call the object class methods.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / ravikiran
Serialization is the process of saving the object state
into an output stream
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / abilash
Serialization is a Process of translating a state of object
into a stream of bytes.
| Is This Answer Correct ? | 2 Yes | 2 No |
What is actual difference between statement,prepared statement and callable statement and when we have to use it? pls post a answer with code and clear explanation. thanks
What is the flag in java?
What are different types of arrays?
How to make class immutable
Which one of the following suits the description of a string better: derived or primitive?
what do you mean by classloader in java?
How to make a non daemon thread as daemon?
Why is it called boolean?
Explain the overview of UDP messaging.
What is synchronization and why is it important in java programming?
What are the steps in the jdbc connection?
Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?