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
- collection API
Submitted by Balamurali | Rated 0 - Java Programming Language Versions
Published about 29-11-2009 | Rated 0 - Use NetBeans IDE 6.7 to Combine JAR Files Into a Single JAR File
Published about 25-08-2009 | Rated 0 - Create a Simple Window Using JFrame
Published about 30-04-2009 | Rated +1







