博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java:序列化Serializable 接口
阅读量:6670 次
发布时间:2019-06-25

本文共 2443 字,大约阅读时间需要 8 分钟。

java:序列化Serializable 接口

public class SerializePerson implements Serializable {	private String name;	private int age;		public SerializePerson(String name, int age)	{				this.name = name;		this.age = age;	}	@Override	public String toString() {		return "姓名:" + name + ", 年龄:" + age;	}				}

  

 

一,单对象序列化

public static void main(String[] args) throws Exception, Exception {		// TODO 自动生成的方法存根								if(  args[0].equals("set") )		{						setPseron();					}else if( args[0].equals("get") )		{			getPseron();		}else{			System.out.println("抱歉,你什么都没有输入");		}		System.out.println(args[0]);	}		public static void setPseron() throws Exception, IOException	{				File file = new File("F:"+File.separator+"work"+File.separator+"work"+File.separator+"a.txt");		ObjectOutputStream oobs = null;		oobs = new ObjectOutputStream( new FileOutputStream(file) );		oobs.writeObject(new SerializePerson("张三",22));		oobs.close();					}		public static void getPseron() throws Exception, IOException	{		File file = new File("F:"+File.separator+"work"+File.separator+"work"+File.separator+"a.txt");		ObjectInputStream oips = null;		oips = new ObjectInputStream( new FileInputStream(file) );		Object obj = oips.readObject();		SerializePerson per = (SerializePerson) obj;		System.out.println(per);		 	}

  

 

二。多对象,多数组序列化

public static void main(String[] args) throws Exception, Exception	{						if(args[0].equals("set"))		{						setPerson();		}else if(args[0].equals("get"))		{			Object obj = getPerson();			SerializePerson per[] = (SerializePerson[]) obj;			print(per);					}else{			System.out.println("请输入一个操作");		}			}		public static void setPerson() throws Exception, IOException	{		File file = new File("F:"+File.separator+"work"+File.separator+"work"+File.separator+"person.per");		ObjectOutputStream  oopt = new ObjectOutputStream( new FileOutputStream(file) );				SerializePerson per[] = {new SerializePerson("张三",22), new SerializePerson("李四",44), new SerializePerson("王五",33)};		oopt.writeObject(per);				oopt.close();	}		public static Object getPerson() throws Exception, IOException	{		File file = new File("F:"+File.separator+"work"+File.separator+"work"+File.separator+"person.per");		ObjectInputStream lis = null;		lis = new ObjectInputStream( new FileInputStream(file) );		Object obj = null;		obj = lis.readObject();		lis.close();		return obj;			}		public static void print(SerializePerson per[])	{		for(SerializePerson p: per)		{			System.out.println(p);		}	}

  

 

转载地址:http://pylxo.baihongyu.com/

你可能感兴趣的文章
有关微信域名被拦截的经验分享
查看>>
常用数据结构
查看>>
在Antd-Pro下实现文件下载
查看>>
基于Nodejs的前端灰度发布方案_20190228
查看>>
解决Jenkins可选插件列表为空提示“connect time out”问题
查看>>
RN基础
查看>>
304. Range Sum Query 2D - Immutable
查看>>
Redis实现广告缓存、并完善缓存击穿
查看>>
如何绘制最美的鱼骨图?
查看>>
什么是session?什么是cookie?session和cookie有什么区别?
查看>>
javascript引擎执行的过程的理解--语法分析和预编译阶段
查看>>
百度正式发布PaddlePaddle深度强化学习框架PARL
查看>>
迟到但重要的事
查看>>
从零学前端第十三讲:AngularJs进阶-指令
查看>>
CSS之FFC/GFC
查看>>
Node.js 指南(不要阻塞事件循环或工作池)
查看>>
为你的AliOS Things应用增加自定义cli命令
查看>>
PHP工具篇:PHPStorm IDE使用CodeSniffer代码规范化管理
查看>>
ADB 命令(一)
查看>>
使用 Gatsby.js 搭建静态博客 1 关键文件
查看>>