Java object serialization and java serialization

Source: Internet
Author: User
Tags object serialization

Java object serialization and java serialization

Java provides two methods for Object Persistence: serialization and external serialization.

(1) Serialization

Serialization is a process that describes an object in a string of bytes. It is used to solve the problems caused by read/write operations on the object stream.

All classes to be serialized must implement the serializable interface.

(2) External serialization (externalizable)

To implement external serialization, you must implement the readExternal (ObjectInput in) and writeExternal (ObjectOutput out) methods.

Serialization features:

1. If a class can be serialized, its subclass can also be serialized.

2. Because static modified variables or methods represent class members and transient keyword modified variables represent temporary data of objects, it is not enough to declare these two types of data members to be serialized.

When to use serialization?

1. The status of the object or object to be sent over the network needs to be persisted to the database or file.

2. serialization can achieve deep replication.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.