Explain Object Serialization and it can be used?
Answer Posted / devarathnam c,kotagudibanda(po
Hi,
Object Serialization: It is process of storing an object
state as permanently in the file(secondary storage).Java is
internet language ,so we need to serialize an object
into "bit-blobs" streams inorder to send an object(s) over
the network.To achieve this task we can use "Serializable"
interface(Marker interface),"ObjectOutputStream"
and "ObjectInputStream" classes also plays key role in the
Serialization process.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the difference between the font and fontmetrics classes?
Explain the different types of memory used by jvm?
Why use POJO when I can use hashmap
Difference between loadclass and class.forname?
Which javutil classes and interfaces support event handling?
Is the infobus client side only?
Name three subclasses of the component class?
What are the types of scaling?
Write a singleton program?
AS a developer will u create a data source in connection pool? If so how will u do that, how to access the object from connection pool using IRAD tool?
What is a tasks priority and how is it used in scheduling?
What is a policy?
How can I scroll through list of pages like the search results in google?
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 clustering? What are the different algorithms used for clustering?