国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home Java Javagetting Started Java object serialization and deserialization

Java object serialization and deserialization

Nov 27, 2019 pm 05:59 PM
I流 java Deserialization object Serialization

Java object serialization and deserialization

Serialization and deserialization of objects

1) Object serialization is to convert the Object object into byte sequence, otherwise it is called deserialization of the object.

2) Serialization stream (ObjectOutputStream) is a filtered stream of bytes - writeObject() method

Deserialization stream (ObjectInputStream) - readObject() method

3) Serializable interface (Serializable)

The object must implement the serialization interface before it can be serialized, otherwise an exception will occur.

Note: This interface does not have any methods, it is just a [standard]

1. The most basic sequence The process of serialization and deserialization

Serialization and deserialization are all operated on Object objects. Here is a simple case to demonstrate the object serialization and deserialization. process.

1. Create a new Student class (test class)

Note: A class that implements the serialization interface is required to perform serialization operations! !

@SuppressWarnings("serial")
public?class?Student?implements?Serializable{
????private?String?stuno;//id
????private?String?stuna;//姓名
????private?int?stuage;//年齡
????public?String?getStuno()?{
????????return?stuno;
????}
????public?void?setStuno(String?stuno)?{
????????this.stuno?=?stuno;
????}
????public?String?getStuna()?{
????????return?stuna;
????}
????public?void?setStuna(String?stuna)?{
????????this.stuna?=?stuna;
????}
????public?Student()?{
????????super();
????????//?TODO?Auto-generated?constructor?stub
????}
????public?Student(String?stuno,?String?stuna,?int?stuage)?{
????????super();
????????this.stuno?=?stuno;
????????this.stuna?=?stuna;
????????this.stuage?=?stuage;
????}
????@Override
????public?String?toString()?{
????????return?"Student?[stuno="?+?stuno?+?",?stuna="?+?stuna?+?",?stuage="?+?stuage?+?"]";
????}
????public?int?getStuage()?{
????????return?stuage;
????}
????public?void?setStuage(int?stuage)?{
????????this.stuage?=?stuage;
????}
}

2. Serialize instances of the Student class into files

The basic operation steps are as follows:

1), specify serialization and save file

2), construct the ObjectOutputStream class

3), construct a Student class

4), use the writeObject method to serialize

5), Use the close() method to close the stream

String?file="demo/obj.dat";
????????//對象的序列化
????????ObjectOutputStream?oos=new?ObjectOutputStream(
????????????????new?FileOutputStream(file));
????????//把Student對象保存起來,就是對象的序列化
????????Student?stu=new?Student("01","mike",18);
????????//使用writeObject方法序列化
????????oos.writeObject(stu);
????????oos.close();

Running results: You can see that the serialized file obj.dat was generated in the demo directory

3. Deserialize the file and read out the Student class object

The basic operation steps are as follows:

1), specify the file to be deserialized

2), Construct the ObjectInputStream class

3), use the readObject method to deserialize

1), and use the close method to close the stream

String?file="demo/obj.dat";
????????ObjectInputStream?ois?=new?ObjectInputStream(
????????????????new?FileInputStream(file));
????????//使用readObject()方法序列化
????????Student?stu=(Student)ois.readObject();//強制類型轉換
????????System.out.println(stu);
????????ois.close();

Running results:

Note: When deserializing a file, the objects taken out by the readObject method are of type Object by default and must be forced to the corresponding type.

2. Transient and ArrayList source code analysis

In the daily programming process, we sometimes do not want all the elements of a class to be Serialized by the compiler, what should I do at this time?

Java provides a transient keyword to modify elements that we do not want to be automatically serialized by the jvm. Let’s briefly explain this keyword.

transient keyword: The element modified by transient will not be serialized by jvm by default, but you can complete the serialization of this element by yourself.

Note:

1) In future network programming, if there are certain elements that do not need to be transmitted, they can be modified with transient to save traffic; yes Efficient element serialization to improve performance.

2) You can use writeObject to complete the serialization of this element yourself.

ArrayList is optimized using this method. ArrayList's core container Object[] elementData uses transient modification, but writeObject implements serialization of the elementData array itself. Only valid elements in the array are serialized. readObject is similar.

--------------My own way of serialization- --------------

Add two methods to the class to be serialized (These two methods are derived from the ArrayList source code Two special methods extracted from JVM will automatically use these two methods to help us complete this action.

There is another question here. Why do we still need to complete serialization and deserialization manually? What is the meaning?

This problem needs to be analyzed from the source code of ArrayList:

It can be seen that the source code of ArrayList The purpose of self-serialization: The bottom layer of ArrayList is an array. Self-serialization can filter invalid elements in the array and only serialize valid elements in the array, thereby improving performance

.

Therefore, during the actual programming process, we can complete the serialization ourselves as needed to improve performance.

三、序列化中子父類構造函數(shù)問題

在類的序列化和反序列化中,如果存在子類和父類的關系時,序列化和反序列化的過程又是怎么樣的呢?

這里我寫一個測試類來測試子類和父類實現(xiàn)序列化和反序列化時構造函數(shù)的實現(xiàn)變化。

public?static?void?main(String[]?args)?throws?IOException?{
????????//?TODO?Auto-generated?method?stub
????????String?file="demo/foo.dat";
????????ObjectOutputStream?oos=new?ObjectOutputStream(
????????????????new?FileOutputStream(file));
????????Foo2?foo2?=new?Foo2();
????????oos.writeObject(foo2);
????????oos.flush();
????????oos.close();
????}

}
class?Foo?implements?Serializable{
????public?Foo(){
????????System.out.println("foo");
????}
}
class?Foo1?extends?Foo{
????public?Foo1(){
????????System.out.println("foo1");
????}
????
}
class?Foo2?extends?Foo1{
????public?Foo2(){
????????System.out.println("foo2");
????}
}

運行結果:這是序列化時遞歸調(diào)用了父類的構造函數(shù)

接來下看看反序列化時,是否遞歸調(diào)用父類的構造函數(shù)。

ObjectInputStream?ois=new?ObjectInputStream(
new?FileInputStream(file));
Foo2?foo2=(Foo2)ois.readObject();
ois.close();

運行結果:控制臺沒有任何輸出。

那么這個結果是否證明反序列化過程中父類的構造函數(shù)就是始終不調(diào)用的呢?

然而不能證明??!

因為再看下面這個不同的測試例子:

class?Bar?{
????public?Bar(){
????????System.out.println("bar");
????}
}
class?Bar1?extends?Bar?implements?Serializable{
????public?Bar1(){
????????System.out.println("bar1");
????}
}
class?Bar2?extends?Bar1{
????public?Bar2(){
????????System.out.println("bar2");
????}
}

我們用這個例子來測試序列化和反序列化。

序列化結果:

反序列化結果:沒實現(xiàn)序列化接口的父類被顯示調(diào)用構造函數(shù)

【反序列化時】,向上遞歸調(diào)用構造函數(shù)會從【可序列化的一級父類結束】。即誰實現(xiàn)了可序列化(包括繼承實現(xiàn)的),誰的構造函數(shù)就不會調(diào)用。

總結:

1)父類實現(xiàn)了serializable接口,子類繼承就可序列化。

子類在反序列化時,父類實現(xiàn)了序列化接口,則不會遞歸調(diào)用其構造函數(shù)。

2)父類未實現(xiàn)serializable接口,子類自行實現(xiàn)可序列化

子類在反序列化時,父類沒有實現(xiàn)序列化接口,則會遞歸調(diào)用其構造函數(shù)。

本文來自?java入門?欄目,歡迎學習!

The above is the detailed content of Java object serialization and deserialization. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1502
276
How to handle transactions in Java with JDBC? How to handle transactions in Java with JDBC? Aug 02, 2025 pm 12:29 PM

To correctly handle JDBC transactions, you must first turn off the automatic commit mode, then perform multiple operations, and finally commit or rollback according to the results; 1. Call conn.setAutoCommit(false) to start the transaction; 2. Execute multiple SQL operations, such as INSERT and UPDATE; 3. Call conn.commit() if all operations are successful, and call conn.rollback() if an exception occurs to ensure data consistency; at the same time, try-with-resources should be used to manage resources, properly handle exceptions and close connections to avoid connection leakage; in addition, it is recommended to use connection pools and set save points to achieve partial rollback, and keep transactions as short as possible to improve performance.

Understanding the Java Virtual Machine (JVM) Internals Understanding the Java Virtual Machine (JVM) Internals Aug 01, 2025 am 06:31 AM

TheJVMenablesJava’s"writeonce,runanywhere"capabilitybyexecutingbytecodethroughfourmaincomponents:1.TheClassLoaderSubsystemloads,links,andinitializes.classfilesusingbootstrap,extension,andapplicationclassloaders,ensuringsecureandlazyclassloa

How to work with Calendar in Java? How to work with Calendar in Java? Aug 02, 2025 am 02:38 AM

Use classes in the java.time package to replace the old Date and Calendar classes; 2. Get the current date and time through LocalDate, LocalDateTime and LocalTime; 3. Create a specific date and time using the of() method; 4. Use the plus/minus method to immutably increase and decrease the time; 5. Use ZonedDateTime and ZoneId to process the time zone; 6. Format and parse date strings through DateTimeFormatter; 7. Use Instant to be compatible with the old date types when necessary; date processing in modern Java should give priority to using java.timeAPI, which provides clear, immutable and linear

Comparing Java Frameworks: Spring Boot vs Quarkus vs Micronaut Comparing Java Frameworks: Spring Boot vs Quarkus vs Micronaut Aug 04, 2025 pm 12:48 PM

Pre-formanceTartuptimeMoryusage, Quarkusandmicronautleadduetocompile-Timeprocessingandgraalvsupport, Withquarkusoftenperforminglightbetterine ServerLess scenarios.2.Thyvelopecosyste,

Understanding Network Ports and Firewalls Understanding Network Ports and Firewalls Aug 01, 2025 am 06:40 AM

Networkportsandfirewallsworktogethertoenablecommunicationwhileensuringsecurity.1.Networkportsarevirtualendpointsnumbered0–65535,withwell-knownportslike80(HTTP),443(HTTPS),22(SSH),and25(SMTP)identifyingspecificservices.2.PortsoperateoverTCP(reliable,c

How does garbage collection work in Java? How does garbage collection work in Java? Aug 02, 2025 pm 01:55 PM

Java's garbage collection (GC) is a mechanism that automatically manages memory, which reduces the risk of memory leakage by reclaiming unreachable objects. 1.GC judges the accessibility of the object from the root object (such as stack variables, active threads, static fields, etc.), and unreachable objects are marked as garbage. 2. Based on the mark-clearing algorithm, mark all reachable objects and clear unmarked objects. 3. Adopt a generational collection strategy: the new generation (Eden, S0, S1) frequently executes MinorGC; the elderly performs less but takes longer to perform MajorGC; Metaspace stores class metadata. 4. JVM provides a variety of GC devices: SerialGC is suitable for small applications; ParallelGC improves throughput; CMS reduces

Comparing Java Build Tools: Maven vs. Gradle Comparing Java Build Tools: Maven vs. Gradle Aug 03, 2025 pm 01:36 PM

Gradleisthebetterchoiceformostnewprojectsduetoitssuperiorflexibility,performance,andmoderntoolingsupport.1.Gradle’sGroovy/KotlinDSLismoreconciseandexpressivethanMaven’sverboseXML.2.GradleoutperformsMaveninbuildspeedwithincrementalcompilation,buildcac

go by example defer statement explained go by example defer statement explained Aug 02, 2025 am 06:26 AM

defer is used to perform specified operations before the function returns, such as cleaning resources; parameters are evaluated immediately when defer, and the functions are executed in the order of last-in-first-out (LIFO); 1. Multiple defers are executed in reverse order of declarations; 2. Commonly used for secure cleaning such as file closing; 3. The named return value can be modified; 4. It will be executed even if panic occurs, suitable for recovery; 5. Avoid abuse of defer in loops to prevent resource leakage; correct use can improve code security and readability.

See all articles