1
public void messageReceived(IoSession session, Object message) throws Exception 
{
    // do something
}

谁能告诉我如何从对象中获取数据?

4

2 回答 2

2

这真的很简单,只需将消息转换为 IoBuffer 并提取字节即可。

// cast message to io buffer
IoBuffer data = (IoBuffer) message;
// create a byte array to hold the bytes
byte[] buf = new byte[data.limit()];
// pull the bytes out
data.get(buf);
// look at the message as a string
System.out.println("Message: " + new String(buf));
于 2011-11-15T21:20:22.680 回答
0

将消息转换为您在客户端 session.write 中使用的对象类型。

于 2011-04-26T10:06:19.480 回答