我正在构建客户端 - 服务器应用程序。现在我想使用以下代码将消息从客户端转发到所有其他客户端:
ArrayList<User> usrs = _usrHandler.getUsers();
for(User usr : usrs) {
if(!usr.getSocket().equals(_connection)) {
usr._oOut.writeObject(new CommunicationMessage(this._comMsg.getMessage(), CommunicationMessage.MSG,
this._comMsg.getUser()));
}
}
在客户端,程序正在侦听消息。它抛出了这个例外:
java.io.StreamCorruptedException: invalid stream header: 7371007E
at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:783)
at java.io.ObjectInputStream.<init>(ObjectInputStream.java:280)
at Connection$MessageListener.run(Connection.java:126)
at java.lang.Thread.run(Thread.java:637)
消息监听:
while(this._loop) {
this._comMsg = (CommunicationMessage) this._dataInput.readObject();
SimpleAttributeSet attr = new SimpleAttributeSet();
attr.addAttribute(StyleConstants.CharacterConstants.Bold, Boolean.TRUE);
attr.addAttribute(StyleConstants.CharacterConstants.Foreground, _comMsg.getUser().getColor());
messageClient.addMessage(_comMsg.getUser().getNickName() + ": ", attr);
messageClient.addMessage(_comMsg.getMessage(), _comMsg.getUser().getColor());
_comMsg = null;
}
是否有人看到错误?
答案 0 :(得分:7)
你可能会对你的流有所了解。
构造ObjectInputStream
时,构造函数从流中读取前两个字节,期望它们成为对象流中应存在的“神奇值”。如果它们不存在,则会抛出StreamCorruptedException
(这都在ObjectInputStream
源代码中)。
所以看起来你在InputStream
中包装了一个ObjectInputStream
,而实际上从连接另一端传来的数据实际上并不是一个对象流。也许它仍在发送先前通信的数据。