java 序列化对象 serializable 读写数据的实例
序列化对象:
package com.chen.seriaizable;
import java.io.Serializable;
import java.util.List;
@SuppressWarnings("serial")
public class Student implements Serializable
{
private String name;
private String id;
private int age;
private List<Student> students;
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getId()
{
return id;
}
public void setId(String id)
{
this.id = id;
}
public int getAge()
{
return age;
}
public void setAge(int age)
{
this.age = age;
}
public List<Student> getStudents()
{
return students;
}
public void setStudents(List<Student> students)
{
this.students = students;
}
@Override
public String toString()
{
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append("id:" + this.id).append("\n");
stringBuffer.append("name:" + this.name).append("\n");
stringBuffer.append("age:" + this.age).append("\n");
return stringBuffer.toString();
}
}
package com.chen.seriaizable;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.List;
public class SaveStudent
{
private Student student;
// 序列化文件保存位置
private String path = "C:/student.Serializable";
public void writeStudent()
{
List<Student> students = new ArrayList<Student>();
student = new Student();
Student student1 = new Student();
student1.setAge(1);
student1.setId("1");
student1.setName("张1");
students.add(student1);
Student student2 = new Student();
student2.setAge(2);
student2.setId("2");
student2.setName("张2");
students.add(student2);
Student student3 = new Student();
student3.setAge(3);
student3.setId("3");
student3.setName("张3");
students.add(student3);
Student student4 = new Student();
student4.setAge(4);
student4.setId("4");
student4.setName("张4");
Student student41 = new Student();
student41.setAge(41);
student41.setId("41");
student41.setName("张41");
List<Student> students4 = new ArrayList<Student>();
students4.add(student41);
student4.setStudents(students4);
students.add(student4);
student.setAge(500);
student.setId("100");
student.setName("张A000");
student.setStudents(students);
try
{
ObjectOutputStream objectOutputStream = new ObjectOutputStream(new FileOutputStream(path));
objectOutputStream.writeObject(student);
objectOutputStream.close();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("写完");
}
public void readStudent()
{
try
{
ObjectInputStream objectInputStream = new ObjectInputStream(new FileInputStream(path));
student = (Student) objectInputStream.readObject();
System.out.println(student.getAge());
objectInputStream.close();
}
catch (Exception e)
{
e.printStackTrace();
}
System.out.println("读完");
}
@Override
public String toString()
{
readStudent();
StringBuffer stringBuffer = new StringBuffer(100);
studentToString(stringBuffer, student);
return stringBuffer.toString();
}
public void studentToString(StringBuffer stringBuffer, Student studentObj)
{
if (student != null)
{
stringBuffer.append("id:" + studentObj.toString()).append("\n");
if (studentObj.getStudents() != null)
{
stringBuffer.append("\n[\n");
for (Student bean : studentObj.getStudents())
{
studentToString(stringBuffer, bean);
}
stringBuffer.append("\n]\n");
}
}
}
}
测试类:
package com.chen.seriaizable;
public class Test
{
/**
* @param args
*/
public static void main(String[] args)
{
SaveStudent saveStudent = new SaveStudent();
// 1 先执行写入文件
// saveStudent.writeStudent();
// 2 再读取
System.out.println(saveStudent);
System.out.println("读完");
}
}
相关文章
springmvc Controller方法没有加@ResponseBody导致api访问404问题
这篇文章主要介绍了springmvc Controller方法没有加@ResponseBody导致api访问404问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-01-01Spring Boot RabbitMQ 延迟消息实现完整版示例
本篇文章主要介绍了Spring Boot RabbitMQ 延迟消息实现完整版示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-05-05Spring Cloud gateway 网关如何拦截Post请求日志
这篇文章主要介绍了Spring Cloud gateway 网关如何拦截Post请求日志的操作,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2021-07-07SpringAop自定义切面注解、自定义过滤器及ThreadLocal详解
这篇文章主要介绍了SpringAop自定义切面注解、自定义过滤器及ThreadLocal详解,Aspect(切面)通常是一个类,里面可以定义切入点和通知(切面 = 切点+通知),execution()是最常用的切点函数,需要的朋友可以参考下2024-01-01
最新评论