Java對象序列化和反序列化是Java語言中一種重要的功能,可以將Java對象轉換成字節流,并在之后通過反序列化將字節流轉換回Java對象。這種功能在網絡通信和持久化存儲中非常有用。
在Java中,使用ObjectOutputStream實現對象序列化,使用ObjectInputStream實現對象反序列化。下面是一個簡單的例子。
import java.io.*;
public class SerializeDemo {
public static void main(String [] args) {
Employee e = new Employee();
e.name = "John Doe";
e.address = "1234 Test Street";
e.SSN = 11122333;
e.number = 101;
try {
FileOutputStream fileOut =
new FileOutputStream("employee.ser");
ObjectOutputStream out =
new ObjectOutputStream(fileOut);
out.writeObject(e);
out.close();
fileOut.close();
} catch (IOException i) {
i.printStackTrace();
}
}
}
public class Employee implements java.io.Serializable {
public String name;
public String address;
public transient int SSN;
public int number;
public void mailCheck() {
System.out.println("Mailing a check to " + name
+ " " + address);
}
}
在這個例子中,我們定義了一個Employee類,并在main函數中創建一個對象e,并將其序列化到文件employee.ser中。
import java.io.*;
public class DeserializeDemo {
public static void main(String [] args) {
Employee e = null;
try {
FileInputStream fileIn =
new FileInputStream("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);
}
}
在這個例子中,我們通過創建一個ObjectInputStream對象,從文件中讀取序列化后的Employee對象,并將其反序列化到一個Employee對象e中,然后打印出e的屬性。
Java對象序列化和反序列化是Java語言中重要的功能之一,可以方便地將Java對象轉換為字節流,在網絡傳輸和持久化存儲中使用。
上一篇& 符號 php