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
Mention the scope values for
How can I handle jsp page errors?
How to ignore the el expression evaluation in a jsp?
Is jsp platform dependent?
Why should we not configure jsp standard tags in web.xml?
How do you connect to the database from jsp?
How can we handle exceptions thrown by jsp service method?
How do I use a scriptlet to initialize a newly instantiated bean?
How we can disable session in jsp?
Can you explain what is jsp page life cycle?
How do I prevent the output of my jsp or servlet pages from being cached by the browser?
Why don’t we need to configure jsp standard tags in web.xml?
How do you prevent the creation of a session in a jsp page and why? What is the difference between include directive & jsp:include action?
What is jsp and how it works?
What is the