package com.javaniu;

import java.io.FileOutputStream;
import java.io.ObjectOutputStream;

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

	public static void main(String args[]) {
		serializeAddress("北京朝阳区", "中国");
	}

	public static void serializeAddress(String street, String country) {

		Address address = new Address();
		address.setStreet(street);
		address.setCountry(country);

		try {

			FileOutputStream fout = new FileOutputStream("c:\\address.ser");
			ObjectOutputStream oos = new ObjectOutputStream(fout);
			oos.writeObject(address);
			oos.close();
			System.out.println("Done");

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

}
最近下载更多
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日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友