public class test{
public static void main(String[] args){
ServerSocket ss;
ObjectInputStream ois;
user user1;
try {
ss = new ServerSocket(9991);
Socket socket=ss.accept();
ois=new ObjectInputStream(socket.getInputStream());
try {
user1=(user)ois.readObject();//这一行出错
System.out.print(user1.getName());
} catch (ClassNotFoundException e) {
}
} catch (IOException e) {
}
}
}
上面标记了出错的地方。
这是一个服务器,用来读取对象流的,可是报错了。
报错类型:Connection reset
求求大神帮帮忙!