我正在尝试编写并反对文件,然后从文件中读取对象并对其执行一些操作。该对象被写入文件正常,但当我尝试从文件中检索它时我什么也得不到。我使用的代码如下:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.Date;
public class Driver
{
public static void main(String[] args) throws IOException, ClassNotFoundException
{
FileOutputStream fos = new FileOutputStream("C:\\Users\\Russian\\Desktop\\file.txt");
ObjectOutputStream oos = new ObjectOutputStream(fos);
Person person = new Person("B1234","Roshane","Nolan","male","Spanish Town",new Date(),
"B2134","B3214",150.0,5.11);
oos.writeObject(person);
oos.flush();
oos.close();
//READING FROM THE FILE
FileInputStream fis = new FileInputStream("C:\\Users\\Russian\\Desktop\\file.txt");
ObjectInputStream ois = new ObjectInputStream(fis);
Person object = (Person) ois.readObject();
System.out.println(object);
ois.close();
}
}
答案 0 :(得分:3)
我认为您必须通过实施java.io.Serializable来序列化Person
对象
来自API文档,ObjectInputStream
ObjectInputStream is used to recover those objects previously serialized.
以下代码(主要功能与您的相同:
public static void main(String[] args) throws IOException, ClassNotFoundException
{
FileOutputStream fos = new FileOutputStream("src/main/resources/Test.txt");
ObjectOutputStream oos = new ObjectOutputStream(fos);
Person person = new Person("B1234","Roshane","Nolan","male","Spanish Town",new Date(),
"B2134","B3214",150.0,5.11);
oos.writeObject(person);
oos.flush();
oos.close();
//READING FROM THE FILE
FileInputStream fis = new FileInputStream("src/main/resources/Test.txt");
ObjectInputStream ois = new ObjectInputStream(fis);
Person object = (Person) ois.readObject();
System.out.println(object.toString());
}
人类
import java.util.Date;
public class Person implements java.io.Serializable{
String arg1,arg2,arg3,arg4,arg5,arg6,arg7;
Double d1,d2;
Date date1;
public Person(String string, String string2, String string3,
String string4, String string5, Date date, String string6,
String string7, double d, double e) {
this.arg1=string;
this.arg2=string2;
this.arg3=string3;
this.arg4=string4;
this.arg5=string5;
this.arg6=string6;
this.arg7=string7;
this.d1=d;
this.d2=e;
this.date1=date;
// TODO Auto-generated constructor stub
}
@Override
public String toString()
{
return "Person:"+this.arg1+":"+this.arg2+":"+this.arg3+":"+this.arg4+":"+this.arg5+":"+this.arg6+":"+this.arg7+":"+this.d1+":"+this.d2+":"+this.date1;
}
}
输出:
Person:B1234:Roshane:Nolan:male:Spanish Town:B2134:B3214:150.0:5.11:Sun Apr 14 23:11:27 CDT 2013
答案 1 :(得分:0)
你应该用'没什么'来指明你的意思。你得到了吗?
您可以将writeObject和readObject添加到person类。 http://docs.oracle.com/javase/1.4.2/docs/api/java/io/ObjectInputStream.html
private void writeObject(ObjectOutputStream oos)
{
// default serialisation
oos.defaultWriteObject();
// write custom fields
oos.writeUTF(this.name);
}
private void readObject(ObjectInputStream ois)
throws ClassNotFoundException, IOException
{
// default serialisation
ois.defaultReadObject();
// read custom fields
this.name = ois.readUTF();
}