您好,登錄后才能下訂單哦!
Java—IO流 對象的序列化和反序列化
序列化的基本操作
1.對象序列化,就是將Object轉換成byte序列,反之叫對象的反序列化。
2.序列化流(ObjectOutputStream),writeObject 方法用于將對象寫入輸出流中;
反序列化流(ObjectInputStream),readObject 方法用于從輸入流中讀取對象。
3.序列化接口(Serializeable)
對象必須實現序列化接口,才能進行序列化,否則會出現異常。這個接口沒有任何方法,只是一個標準。
package com.test.io; import java.io.FileInputStream; import java.io.FileOutputStream;import java.io.ObjectInputStream; import java.io.ObjectOutputStream; public class ObjectSerialzeTest { /** * 對象的序列化 * @param file * @throws Exception */ public void ObjectOutput (String file) throws Exception { ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(file)); Student stu = new Student("002", "張四", 12); oos.writeObject(stu); oos.flush(); oos.close(); } /** * 對象的反序列化 * @param file * @throws Exception */ public void ObjectInput(String file) throws Exception { ObjectInputStream ois = new ObjectInputStream(new FileInputStream(file)); Student stu = (Student)ois.readObject(); System.out.println(stu.toString()); ois.close(); } public static void main(String[] args) throws Exception { String file = "F:\\javaio\\obj.dat"; ObjectSerialzeTest ost = new ObjectSerialzeTest(); ost.ObjectOutput(file); ost.ObjectInput(file); } }
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。