Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1964909
  • 博文数量: 606
  • 博客积分: 9991
  • 博客等级: 中将
  • 技术积分: 5725
  • 用 户 组: 普通用户
  • 注册时间: 2008-07-17 19:07
文章分类

全部博文(606)

文章存档

2011年(10)

2010年(67)

2009年(155)

2008年(386)

分类:

2009-02-16 17:50:00

object 流:直接将object写入或读出(必须将兑现序列化)

import java.io.*;

public class TestObjectIO {
public static void main(String args[]) throws Exception {
   T t = new T();
   t.k = 8;
   FileOutputStream fos = new FileOutputStream("d:/share/java/io/testobjectio.dat");
   ObjectOutputStream oos = new ObjectOutputStream(fos);
   oos.writeObject(t);
   oos.flush();
   oos.close();
  
   FileInputStream fis = new FileInputStream("d:/share/java/io/testobjectio.dat");
   ObjectInputStream ois = new ObjectInputStream(fis);
   T tReaded = (T)ois.readObject();
   System.out.println(tReaded.i + " " + tReaded.j + " " + tReaded.d + " " + tReaded.k);
  
}
}

class T
implements Serializable
{
int i = 10;
int j = 9;
double d = 2.3;
transient int k = 15;
}

阅读(551) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~