码迷,mamicode.com
首页 > 编程语言 > 详细

java 序列化和反序列化数据

时间:2017-08-25 19:56:44      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:dem   exce   object   close   div   对象   amd   网络   throw   

使用ObjectOutputStream 序列号原始数据和对象数据,使用ObjectInputStream 反序列化

使用字节存储数据,可以将序列化的数据存储到硬盘上,或输出到网络上

package com.test;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Date;

public class ObjecyOutputStreamDemo {

	public static void main(String[] args) throws IOException, ClassNotFoundException {
        out();
		in();
		
	}
    public static void out() throws IOException{
    	FileOutputStream fileOutputStream = new FileOutputStream("F:/a.txt");
		ObjectOutputStream oos = new ObjectOutputStream(fileOutputStream);
		oos.writeInt(124);
		oos.writeObject("Today");
		oos.writeObject(new Date());
		oos.close();
		
		
    }
    public static void in() throws IOException, ClassNotFoundException{
    	FileInputStream in = new FileInputStream("F:/a.txt");
    	ObjectInputStream ois = new ObjectInputStream(in);
    	 int i = ois.readInt();
         String today = (String) ois.readObject();
         Date date = (Date) ois.readObject();
         System.out.println(i+today+date);
    	ois.close();
    }
}

  

java 序列化和反序列化数据

标签:dem   exce   object   close   div   对象   amd   网络   throw   

原文地址:http://www.cnblogs.com/newlangwen/p/7429411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!