Java 中序列化的概念是什麼?


序列化

 Java 提供了一種稱為物件序列化的機制,其中可以把物件表示為包括物件的資料以及物件型別和儲存在物件中的資料型別的資訊的位元組序列。

示例

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

輸出

Deserialized Employee...
Name: Reyan Ali
Address:Phokka Kuan, Ambehta Peer
SSN: 0
Number:101

更新時間: 25-02-2020

2K+ 瀏覽

開啟你的事業

透過完成該課程獲得認證

立即開始
廣告
© . All rights reserved.