打印 file-java.io.StreamCorruptedException 的第一条记录后发生此错误:无效类型代码:AC 我正在尝试使用以下代码将对象写入文件并将所有对象读入文件
演示代码
import java.io.*;
import java.util.*;
class Student implements Serializable
{
int no;
String nm;
void set(int no,String nm)
{
this.no=no;
this.nm=nm;
}
void get()
{
System.out.println(no+"--"+nm);
}
}
class write
{
public static void main(String[] args)
{
try
{
int no;
String s;
ObjectOutputStream oi=new ObjectOutputStream(new FileOutputStream("d:\\abc1.txt",true));
Scanner sc=new Scanner(System.in);
System.out.print("Enter Roll No:");
no=sc.nextInt();
System.out.print("Enter Name:");
sc.nextLine();
s=sc.nextLine();
Student s1=new Student();
s1.set(no,s);
oi.writeObject(s1);
oi.close();
Student sp;
ObjectInputStream ooi=new ObjectInputStream(new FileInputStream("d:\\abc1.txt"));
while((sp=(Student)ooi.readObject())!=null)
{
sp.get();
}
ooi.close();
}
catch (Exception ex)
{
System.out.println(ex);
}
}
}
请帮我将所有对象读入文件。