ObjectInputStream和ObejctOutputStream

ObjectInputStream和ObejctOutputStream的做用是:對基本數據和對象進行序列化支持.ide

ObjectOutputStream提供對"基本數據對象"的持久存儲.ObjectInputStream提供對"基本數據對象"的讀取.this

public class ObjectStreamTest {
    private static final String PATH = "D:\\baiduyun\\filetest\\rrr.txt";

    public static void main(String[] args) throws Exception {
    testWrite();
    testRead();
    }

    public static void testWrite() throws FileNotFoundException, IOException {
    ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(new File(PATH)));
    out.writeBoolean(true);
    out.writeByte((byte) 65);
    out.writeChar('a');
    out.writeInt(20131015);
    out.writeFloat(3.14F);
    out.writeDouble(1.414D);
    // 寫入HashMap對象
    HashMap map = new HashMap();
    map.put("one", "red");
    map.put("two", "green");
    map.put("three", "blue");
    out.writeObject(map);
    // 寫入自定義的Box對象,Box實現了Serializable接口
    Box box = new Box("desk", 80, 48);
    out.writeObject(box);

    out.close();

    }

    public static void testRead() throws FileNotFoundException, IOException, ClassNotFoundException {
    ObjectInputStream in = new ObjectInputStream(new FileInputStream(PATH));
    System.out.printf("boolean:%b\n", in.readBoolean());
    System.out.printf("byte:%d\n", (in.readByte() & 0xff));
    System.out.printf("char:%c\n", in.readChar());
    System.out.printf("int:%d\n", in.readInt());
    System.out.printf("float:%f\n", in.readFloat());
    System.out.printf("double:%f\n", in.readDouble());
    // 讀取HashMap對象
    HashMap map = (HashMap) in.readObject();
    Iterator iter = map.entrySet().iterator();
    while (iter.hasNext()) {
        Map.Entry entry = (Map.Entry) iter.next();
        System.out.printf("%-6s -- %s\n", entry.getKey(), entry.getValue());
    }
    // 讀取Box對象,Box實現了Serializable接口
    Box box = (Box) in.readObject();
    System.out.println("box: " + box);

    in.close();

    }

    static class Box implements Serializable {
    private int width;
    private int height;
    private String name;

    public Box(String name, int width, int height) {
        this.name = name;
        this.width = width;
        this.height = height;
    }

    @Override
    public String toString() {
        return "[" + name + ": (" + width + ", " + height + ") ]";
    }
    }
}
相關文章
相關標籤/搜索