zoukankan      html  css  js  c++  java
  • java ObjectOutputStream

    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.io.Serializable;
    
    class Employee {
        private String name;
    
        Employee(String name) {
            this.name = name;
        }
    
        @Override
        public String toString() {
            return name;
        }
    }
    
    class SerEmployee extends Employee implements Serializable {
        SerEmployee(String name) {
            super(name);
        }
    }
    
    public class SerializationDemo {
        public static void main(String[] args) {
            ObjectOutputStream oos = null;
            ObjectInputStream ois = null;
            try {
                oos = new ObjectOutputStream(new FileOutputStream("employee.dat"));
                SerEmployee se = new SerEmployee("John Doe");
                System.out.println(se);
                oos.writeObject(se);
                oos.close();
                oos = null;
                System.out.println("se object written to file");
                ois = new ObjectInputStream(new FileInputStream("employee.dat"));
                se = (SerEmployee) ois.readObject();
                System.out.println("se object read from file");
                System.out.println(se);
            } catch (ClassNotFoundException cnfe) {
                cnfe.printStackTrace();
            }
    
            catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                if (oos != null)
                    try {
                        oos.close();
                    } catch (IOException ioe) {
                        assert false; // shouldn't happen in this context
                    }
                if (ois != null)
                    try {
                        ois.close();
                    } catch (IOException ioe) {
                        assert false; // shouldn't happen in this context
                    }
            }
        }
    }
  • 相关阅读:
    dfa最小化,终于完成了。
    nfa转dfa,正式完成
    正则转nfa:完成
    正则转nfa:bug消除
    myeclipse集成jad反编译步骤
    CSS声明 列表样式 显示方式 鼠标形状
    CSS声明2 定位
    CSS声明1
    CSS基础知识简介
    lol简介/html
  • 原文地址:https://www.cnblogs.com/rojas/p/5407548.html
Copyright © 2011-2022 走看看