public class TestSe {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
Cat t=new Cat();
FileOutputStream fos = new FileOutputStream("in.txt");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(t);
oos.close();
}
}
class Cat implements Serializable
{
}
把一对象序列化文件中在反序列会来
我想知道实际中具体干什么的比如WEB开发中或软件开发中 |
|