day18序列化


Java 序列化

01 序列化和反序列化的概述和实现

Java 提供了一种对象序列化的机制,该机制中,一个对象可以被表示为一个字节序列,该字节序列包括该对象的数据、有关对象的类型的信息和存储在对象中数据的类型。

将序列化对象写入文件之后,可以从文件中读取出来,并且对它进行反序列化,也就是说,对象的类型信息、对象的数据,还有对象中的数据类型可以用来在内存中新建对象。

整个过程都是 Java 虚拟机(JVM)独立的,也就是说,在一个平台上序列化的对象可以在另一个完全不同的平台上反序列化该对象。

类 ObjectInputStream 和 ObjectOutputStream 是高层次的数据流,它们包含反序列化和序列化对象的方法。

public class Employee implements java.io.Serializable
{
    public String name;
    public String address;
    public transient int SSN;  // https://baijiahao.baidu.com/s?id=1636557218432721275&wfr=spider&for=pc
    public int number;
    public void mailCheck()
    {
        System.out.println("Mailing a check to " + name + " " + address);
    }
}
import java.io.*; //文件操作类
 
public class SerializeDemo
{
   public static void main(String [] args)
   {
            Employee e = new Employee();
            e.name = "Reyan Ali";
            e.address = "Phokka Kuan, Ambehta Peer";
            e.SSN = 11122333; //
            e.number = 101;
        try
        {
            FileOutputStream fileOut = new FileOutputStream("/tmp/employee.ser"); // 序列化一个对象到文件  .ser 扩展名
            ObjectOutputStream out = new ObjectOutputStream(fileOut);
            out.writeObject(e);
            out.close();
            fileOut.close();
            System.out.printf("Serialized data is saved in /tmp/employee.ser");
        }catch(IOException i)
        {
            i.printStackTrace();
        }
   }
}
import java.io.*;
 
public class DeserializeDemo
{
   public static void main(String [] args)
   {
        Employee e = null;
        try
        {
            FileInputStream fileIn = new FileInputStream("/tmp/employee.ser");
            ObjectInputStream in = new ObjectInputStream(fileIn);
            e = (Employee) in.readObject();
            in.close();
            fileIn.close();
        }catch(IOException i)
        {
            i.printStackTrace();
            return;
        }catch(ClassNotFoundException c)
        {
            System.out.println("Employee class not found");
            c.printStackTrace();
            return;
        }
        System.out.println("Deserialized Employee...");
        System.out.println("Name: " + e.name);
        System.out.println("Address: " + e.address);
        System.out.println("SSN: " + e.SSN);
        System.out.println("Number: " + e.number);
    }
}

02 练习

使用序列化将对象输入到txt文件中

import java.io.*; //文件操作类
 
public class Test
{
   public static void main(String [] args)
   {
        Employee e = new Employee();
        e.name = "Reyan Ali";
        e.address = "Phokka Kuan, Ambehta Peer";
        e.SSN = 11122333; //
        e.number = 101;
        try
        {
            FileOutputStream fileOut = new FileOutputStream("test.txt"); // 序列化一个对象到文件  .ser 扩展名
            ObjectOutputStream out = new ObjectOutputStream(fileOut);
            out.writeObject(e);
            out.close();
            fileOut.close();
            System.out.printf("Serialized data is saved in test.txt");
        }catch(IOException i)
        {
            i.printStackTrace();
        }
   }
}

猜你喜欢

转载自blog.csdn.net/hezuijiudexiaobai/article/details/107633120