Apache MINA 网络 - 如何从 org.apache.mina.core.service.IoHandlerAdapter 获取数据 messageRecieved(IoSession, Object)
public void messageReceived(IoSession session, Object message) throws Exception
{
// do something
}
谁能告诉我如何从对象中获取数据?
public void messageReceived(IoSession session, Object message) throws Exception
{
// do something
}
Can anyone tell me how to get data from the Object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这真的很简单,只需将消息放入 IoBuffer 并取出字节即可。
It's really quite simple, just cast the message into an IoBuffer and pull out the bytes.
将消息转换为您在客户端 session.write 中使用的对象类型。
Cast message to the object type you used in the client's session.write.