Apache MINA Java TCP 客户端-服务器通信
我想使用 apache mina 来进行 TCP 客户端服务器通信。 谁能给出代码吗? 我在任何地方都找不到它...... google 没找到。 我想通过 mina 发送和接收短信。 所以请帮助我......
i want co communicate TCP client server communication using apache mina.
can anyone give the code ?
i cant find it in any were....
google is failed to find it.
i want to send and recieve text messages via mina .
so please help me....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单
在服务器端
,ioAcceptor 的类型为
org.apache.mina.common.IoAcceptor
您可以使用NioDatagramAcceptor
实例化它TriggerReceiverHandler
是该类处理消息和会话相关事件。它需要扩展
IoHandlerAdapter
。这是服务器用的。同样,对于客户端,唯一的变化是您使用 IoConnector 代替 IoAcceptor。
这是一个例子,也很好地解释了。
http://www.techbrainwave.com/?p=912
It is very simple
on the server side
here ioAcceptor is of type
org.apache.mina.common.IoAcceptor
you can instantiate it by usingNioDatagramAcceptor
TriggerReceiverHandler
is the class that handles the messages and session related events.it needs to extend the
IoHandlerAdapter
.This is for server. Similarly for client the only change is instead of IoAcceptor you use the IoConnector.
Here is an example, well explained too.
http://www.techbrainwave.com/?p=912