【发布时间】:2018-06-18 13:20:47
【问题描述】:
据我了解,end of stream 的全部意义在于告诉输入流何时停止读取数据,这在文件流中是有意义的,但是当它是ObjectInputStream 时,为什么我希望它停止读取对象?以后可能会再发一个。
在我的情况下,ObjectInputStream 每当它决定某些事情导致流结束时就会抛出一个 EOFException。
代码段:
发送:
public synchronized void sendCommand(CommandBase command){
try {
commandOutputStream.writeUnshared(command);
commandOutputStream.flush();
System.out.println("Sent " + command.getAction().toString());
} catch (IOException e) {
System.out.println("Failed to send " + command.getAction().toString());
try {
commandOutputStream.close();
running = false;
this.dispose();
System.out.println("Closing command output stream");
} catch (IOException e1) {
e1.printStackTrace();
}
e.printStackTrace();
}
}
接收
while(going && tcpSender.running){
//Get action from stream
try {
System.out.println("Available bytes: " + commandInputStream.available());
Object command = ((CommandBase) commandInputStream.readObject());
System.out.println("Action received");
if (command instanceof CommandBase) {
if(((CommandBase)command).getAction().equals(ActionType.MouseAction)){
System.out.println("Mouse action");
//JOptionPane.showMessageDialog(null, "Received Mouse Action");
((MouseCommand)command).doAction(operator);
}else if(((CommandBase)command).getAction().equals(ActionType.KeyboardAction)){
System.out.println("Keyboard action");
//JOptionPane.showMessageDialog(null, "Received Keyboard Action: " + ((KeyboardCommand)command).toString());
((KeyboardCommand)command).doAction(operator);
}else if(((CommandBase)command).getAction().equals(ActionType.CheckBooleanAction)){
System.out.println("Check boolean action");
udpSender.notifyThis((CheckBooleanCommand)command);
}else{
//JOptionPane.showMessageDialog(null, "Received unknown command " + ((CommandBase)command).getAction().toString());
System.out.println("Action type is: " + ((CommandBase)command).getAction().toString());
}
}
} catch (EOFException e) {
System.out.println("EOF-Exception - end of stream reached");
e.printStackTrace();
continue;
} catch(IOException e){
System.out.println("IO-Exception - Unable to read action \n Closing socket");
try {
commandInputStream.close();
System.out.println("Closed command input stream");
} catch (IOException e1) {
e1.printStackTrace();
}
e.printStackTrace();
going = false;
tcpSender.running = false;
} catch (ClassNotFoundException e) {
System.out.println("Class not found - failed to cast to Action");
e.printStackTrace();
}
}
TL;DR:ObjectInputStream 如何确定它是流的结尾,是什么原因造成的?
我该如何解决这个问题?
错误信息:
`
java.io.EOFException 在 java.io.ObjectInputStream$BlockDataInputStream.peekByte(未知 来源)
在 java.io.ObjectInputStream.readObject0(Unknown Source)
在 java.io.ObjectInputStream.readObject(Unknown Source)
【问题讨论】:
-
请提供负责的代码。具体来说:您在哪里发送/接收数据?
-
@L.Spillner 我在两台计算机之间发送数据(通常在同一个网络上),我无法提供所有代码,因为它是更大系统的一部分,我不认为它会起作用。
-
@L.Spillner 我添加了负责发送/接收的方法
标签: java inputstream objectinputstream eofexception