亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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";
????????//對(duì)象的序列化
????????ObjectOutputStream?oos=new?ObjectOutputStream(
????????????????new?FileOutputStream(file));
????????//把Student對(duì)象保存起來(lái),就是對(duì)象的序列化
????????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();//強(qiáng)制類型轉(zhuǎn)換
????????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.

三、序列化中子父類構(gòu)造函數(shù)問(wèn)題

在類的序列化和反序列化中,如果存在子類和父類的關(guān)系時(shí),序列化和反序列化的過(guò)程又是怎么樣的呢?

這里我寫一個(gè)測(cè)試類來(lái)測(cè)試子類和父類實(shí)現(xiàn)序列化和反序列化時(shí)構(gòu)造函數(shù)的實(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");
????}
}

運(yùn)行結(jié)果:這是序列化時(shí)遞歸調(diào)用了父類的構(gòu)造函數(shù)

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

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

運(yùn)行結(jié)果:控制臺(tái)沒(méi)有任何輸出。

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

然而不能證明!!

因?yàn)樵倏聪旅孢@個(gè)不同的測(cè)試?yán)樱?/p>

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");
????}
}

我們用這個(gè)例子來(lái)測(cè)試序列化和反序列化。

序列化結(jié)果:

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

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

總結(jié):

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

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

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

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

本文來(lái)自?java入門?欄目,歡迎學(xué)習(xí)!

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
1488
72
VSCode settings.json location VSCode settings.json location Aug 01, 2025 am 06:12 AM

The settings.json file is located in the user-level or workspace-level path and is used to customize VSCode settings. 1. User-level path: Windows is C:\Users\\AppData\Roaming\Code\User\settings.json, macOS is /Users//Library/ApplicationSupport/Code/User/settings.json, Linux is /home//.config/Code/User/settings.json; 2. Workspace-level path: .vscode/settings in the project root directory

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.

Mastering Dependency Injection in Java with Spring and Guice Mastering Dependency Injection in Java with Spring and Guice Aug 01, 2025 am 05:53 AM

DependencyInjection(DI)isadesignpatternwhereobjectsreceivedependenciesexternally,promotingloosecouplingandeasiertestingthroughconstructor,setter,orfieldinjection.2.SpringFrameworkusesannotationslike@Component,@Service,and@AutowiredwithJava-basedconfi

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

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

Google Chrome cannot open local files Google Chrome cannot open local files Aug 01, 2025 am 05:24 AM

ChromecanopenlocalfileslikeHTMLandPDFsbyusing"Openfile"ordraggingthemintothebrowser;ensuretheaddressstartswithfile:///;2.SecurityrestrictionsblockAJAX,localStorage,andcross-folderaccessonfile://;usealocalserverlikepython-mhttp.server8000tor

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

See all articles