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 scriptlet and what is expression?
How can we forward the request from jsp page to the servlet?
What is a output comment?
What is a declaration?
How do I include static files within a jsp page?
How did you implement caching in jsp?
How can I extend the functionality of jsp?
What do you mean by isscriptingenabled attribute?
What is context in web application?
Why are the request.getrequestdispatcher() and context.getrequestdispatcher() used?
Is jsp server side or client side?
Differentiate between
How can we prevent implicit session creation in jsp?
What do you know about jsp expression language (jsp expression language – el)?
What is the default value of session attribute in jsp?