What is the need of serialize?
Answers were Sorted based on User's Feedback
Answer / sujeev kr singh
Serialization is usefull, whenever we want to send an
object over Network. When we want to persit an object
serialization is needed.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / modi[achir communication]
The need of Serialization is, it provides:
* a method of persisting objects which is more
convenient than writing their properties to a text file on
disk, and re-assembling them by reading this back in.
* a method of issuing remote procedure calls, e.g., as
in SOAP)
* a method for distributing objects, especially in
software componentry such as COM, CORBA, etc.
* a method for detecting changes in time-varying data.
| Is This Answer Correct ? | 3 Yes | 1 No |
what is the difference between System.out.println and out.println in java
how i secure my site with the https protocol.what are the steps?
the same information whether it will connect to the database or it will be used previous information?
How to do registration form using struts and hibernate?
What is a class loader? What are the different class loaders used by jvm?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What is the immediate superclass of the applet class?
function of extends and implements keywords?
How to implement RMI in Java?
how we can implement interface in jsp ?
Why use POJO when I can use hashmap
What are the various thread priorities?