Computer Science, asked by Srashti1648, 10 months ago

What is Serialization in Java?

Answers

Answered by Aagmansriva993
1

Serialization is a mechanism of converting the state of an object into a byte stream. Deserialization is the reverse process where the byte stream is used to recreate the actual Java object in memory.

Please mark me brainliest..

I also follow you.....

Answered by VISHALKUMARV22
7

Answer:

Serialization in Java allows us to convert an Object to stream that we can send over the network or save it as file or store in DB for later usage. Deserialization is the process of converting Object stream to actual Java Object to be used in our program.

Similar questions