What Do you Mean By Object Serialization in java.
Answer Posted / nowsheen tariq
Serialization is a process of writing the state of the
object in a stream. The state of the object (information
available in the object)will be held in the instance
variable (not in the static variables)
There are various streams like
ByteArrayOutputStream, FileOutputStream,SocketOutputStream
all these streams can be used to store data to various
destinations like memory,file and someother program.
writeObject() method is for carryout the operation of
serialization.
| Is This Answer Correct ? | 29 Yes | 1 No |
Post New Answer View All Answers
What is jsp declaration?
Explain the advantages in jsp?
Can we use jstl in html?
What is a jsp expression?
Are dialogue tags necessary?
What is pagecontext jsp?
What are jsp implicit objects?
How can I use the results of my method? ea: <%! method (int x) { stuff return y; } %> <% out.println(y); %> how can I make this work? "y" is a variable made during the method.
What are the three tags used in jsp bean development?
What is full form of jsp?
What is the use of implicit object named "application" in Application?
Which is better jsp or javascript?
How to get value from java to jsp page?
Differentiate between include directive and include action.
How do we catch exception and process it using jstl?