要調用Java Serializable接口,需要按照以下步驟進行操作:
import java.io.Serializable;
public class MyClass implements Serializable {
// 類的成員和方法
}
import java.io.FileOutputStream;
import java.io.ObjectOutputStream;
MyClass obj = new MyClass();
try {
FileOutputStream fileOut = new FileOutputStream("file.ser");
ObjectOutputStream out = new ObjectOutputStream(fileOut);
out.writeObject(obj);
out.close();
fileOut.close();
System.out.println("對象已序列化并寫入文件");
} catch (IOException e) {
e.printStackTrace();
}
import java.io.FileInputStream;
import java.io.ObjectInputStream;
MyClass obj = null;
try {
FileInputStream fileIn = new FileInputStream("file.ser");
ObjectInputStream in = new ObjectInputStream(fileIn);
obj = (MyClass) in.readObject();
in.close();
fileIn.close();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException c) {
System.out.println("類未找到");
c.printStackTrace();
}
// 可以對obj對象進行操作
這樣就可以使用Java Serializable接口進行對象的序列化和反序列化了。注意,在序列化和反序列化的過程中,需要處理可能拋出的IOException和ClassNotFoundException異常。