Java I/O流如何处理序列化对象?

2024年 4月 13日 68.2k 0

java i/o 流可对对象进行序列化和反序列化,以便传输或存储,具体步骤如下:使对象实现 serializable 接口;使用 objectoutputstream 将对象序列化到输出流中;从输入流中读取字节流;使用 objectinputstream 将字节流反序列化成对象。

Java I/O流如何处理序列化对象?

Java I/O流处理序列化对象

简介
序列化是一个过程,将一个对象转换成一个字节流,以便它可以在网络或存储设备上进行传输或存储。反序列化是相反的过程,从字节流中重建一个对象。在 Java 中,序列化和反序列化是通过 I/O 流完成的。

序列化对象
要序列化一个对象,我们需要:

  1. 使对象实现 Serializable 接口。
  2. 使用 ObjectOutputStream 将对象写入到输出流中。
// 序列化一个对象
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("object.ser"));
oos.writeObject(object);
oos.close();

反序列化对象
要反序列化一个对象,我们需要:

  1. 从输入流中读取字节流。
  2. 使用 ObjectInputStream 将字节流反序列化成对象。
// 反序列化一个对象
ObjectInputStream ois = new ObjectInputStream(new FileInputStream("object.ser"));
Object object = ois.readObject();
ois.close();

实战案例
让我们创建一个 Student 类,使其可序列化并演示序列化和反序列化过程:

import java.io.Serializable;

public class Student implements Serializable {
    private int id;
    private String name;

    // 构造函数和 getter/setter 略...
}

public class Main {
    public static void main(String[] args) {
        // 创建一个 Student 对象
        Student student = new Student(1, "John Doe");

        // 序列化该对象
        try (ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("student.ser"))) {
            oos.writeObject(student);
        } catch (IOException e) {
            e.printStackTrace();
        }

        // 反序列化该对象
        try (ObjectInputStream ois = new ObjectInputStream(new FileInputStream("student.ser"))) {
            Student deserializedStudent = (Student) ois.readObject();
            System.out.println(deserializedStudent.getId() + " " + deserializedStudent.getName());
        } catch (IOException | ClassNotFoundException e) {
            e.printStackTrace();
        }
    }
}

运行此代码将输出:1 John Doe,这表明对象已成功序列化和反序列化。

以上就是Java I/O流如何处理序列化对象?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论