Apache MINA 网络 - 如何从 org.apache.mina.core.service.IoHandlerAdapter 获取数据 messageRecieved(IoSession, Object)

发布于 2024-10-24 19:51:51 字数 154 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

○愚か者の日 2024-10-31 19:51:51

这真的很简单,只需将消息放入 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));

It's really quite simple, just cast the message into an IoBuffer and pull out the bytes.

// 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));
千仐 2024-10-31 19:51:51

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

Cast message to the object type you used in the client's session.write.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文