package com.javaniu;

import java.io.FileInputStream;
import java.io.ObjectInputStream;

/**
 * 反序列化文件到java对象
 * 
 * @author javaniu
 * 
 */
public class DeserializeFile2Object {

	public static void main(String[] args) {
		Address address = deserialzeAddress();
		System.out.println(address);
	}

	public static Address deserialzeAddress() {

		Address address;

		try {

			FileInputStream fin = new FileInputStream("c:/address.ser");
			ObjectInputStream ois = new ObjectInputStream(fin);
			address = (Address) ois.readObject();
			ois.close();

			return address;

		} catch (Exception ex) {
			ex.printStackTrace();
			return null;
		}
	}

}
最近下载更多
hywell  LV1 2020年4月26日
ngqcn546525101  LV1 2017年6月20日
沉默的羔羊  LV13 2017年1月1日
whatislife  LV13 2015年12月19日
uqarea123  LV1 2015年8月26日
abingagl  LV8 2015年5月7日
hbb  LV13 2015年5月4日
1232135543  LV10 2015年5月3日
ewf_momo  LV16 2015年5月3日
xgjdmy_ccb  LV11 2015年1月26日
最近浏览更多
gan857569302  LV9 2020年6月22日
bobobo1  LV10 2020年5月31日
hywell  LV1 2020年4月26日
Jacko01  LV8 2020年4月21日
里更debug  LV10 2019年5月12日
jhlzhxch  LV1 2019年4月15日
lw19900921  LV25 2018年9月20日
zgx1006914666  LV9 2018年5月29日
464317845  LV2 2018年5月10日
dagf113225  LV68 2017年12月1日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友