InvalidClassExceptinon异常_原理和解决方案,练习_序列化集合
InvalidClassExceptinon异常_原理和解决方案
图解:
练习_序列化集合
当我们在集合中保存多个对象是,这个时候可以用到集合,对对象进行序列化和反序列化
分析:
1定义一个存储Student对象的Arraylist结合
2,往Arraylist集合存储Strudent对象
3,创建一个序列化流
4,使用序列化对象中writerObject。对集合进行序列化
5,使用反序列化对象中readbjent读取文件中保存集合
6,使用反序列化对象中的方法ReadObjent读取文件中保存集合
7,把Object类型的集合转换为Arrlist类型
8,遍历Arraylist集合
9,释放资源
案例:
public static void main(String[] args) throws IOException, ClassNotFoundException {
Student student = new Student();
ArrayList<Student> list = new ArrayList<>();
list.add(new Student("张山",12));
list.add(new Student("王五",15));
list.add(new Student("赵六",19));
list.add(new Student("王琦",20));
ObjectOutputStream os = new ObjectOutputStream(new FileOutputStream("aa.txt"));
os.writeObject(list);
ObjectInputStream ois = new ObjectInputStream(new FileInputStream("aa.txt"));
Object o = ois.readObject();
System.out.println(o);
os.close();
ois.close();
}
}