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
                    }
            }
        }
    }
  • 相关阅读:
    为什么使用enable_shared_from_this——shared_ptr两类错误
    More Effective C++ Item14:明智运用exception specifications
    用“双优先队列”方法解决双/多指标的规划问题
    彻底理解AC多模式匹配算法
    CentOS7安装MySQL
    CentOS7配置本地Yum源
    数组
    比较运算符
    申明变量
    相等运算符==与等同运算符===
  • 原文地址:https://www.cnblogs.com/rojas/p/5407548.html
Copyright © 2011-2022 走看看