News »Browse Articles »
The Java serialization algorithm revealed
0
The Java serialization algorithm revealed
Why is serialization required?
In today`s world, a typical enterprise application will have multiple components and will be distributed across various systems and networks. In Java, everything is represented as objects; if two Java components want to communicate with each other, there needs be a mechanism to exchange data. One way to achieve this is to define your own protocol and transfer an object. This means that the receiving end must know the protocol used by the sender to re-create the object, which would make it very difficult to talk to third-party components. Hence, there needs to be a generic and efficient protocol to transfer the object between components. Serialization is defined for this purpose, and Java components use this protocol to transfer objects.
............
Source:
http://www.javaworld.com/community/node/2915
Search News
News Categories
What's the News?
Post a link to something interesting from another site, or submit your own original writing for the Java community to read.
Most Popular News
-
How to stand out from other Java/JEE Professionals?
Published about 14-01-2009 | Rated +3 -
10 reasons IT certification will be important in 2009
Published about 05-01-2009 | Rated +2 -
The 9 hottest skills for `09
Published about 02-01-2009 | Rated +1 -
New Features in Servlets 3.0
Published about 05-01-2009 | Rated +4
Most Recent User Submitted News
- MyEclipse 7.1 Blue Edition and WebSphere
Submitted by Sonal | Rated +1 - The Truth is Out There: Is It At JavaOne and Oracle OpenWorld?
Published about 27-04-2009 | Rated 0 - 2011 for JAVA developers
Submitted by Mukesh | Rated 0 - Anatomy of a Java Finalizer
Published about 14-07-2009 | Rated 0







