我已经使用netty 4.1设置了一个基本的UDP服务器,它可以很好地从数据包中读取数据。我想在服务器上添加一个功能,以便在收到UDP数据包时回复客户端。这样做的最佳方式是什么?我知道UDP是一种无连接的通信方法,但您应该能够获取IP地址并回复客户端吗?
我的代码如下;
public final class Server {
private static final int PORT = Integer.parseInt(System.getProperty("port", "6565"));
public static void runCommand () throws Exception {
System.out.print("Server is started on port = "+PORT+"\n");
EventLoopGroup group = new NioEventLoopGroup();
try {
Bootstrap b = new Bootstrap();
b.group(group)
.channel(NioDatagramChannel.class)
.handler(new ServerHandler());
b.bind(PORT).sync().channel().closeFuture().await();
} finally {
group.shutdownGracefully();
}
}
}
public class ServerHandler extends SimpleChannelInboundHandler<DatagramPacket> {
@Override
public void channelRead0 (ChannelHandlerContext ctx, DatagramPacket packet) throws Exception {
System.err.println ("Messaged received on " + new Date() + ":\r");
System.err.println(packet.content().toString(CharsetUtil.UTF_8) + "\r\n");
}
@Override
public void channelReadComplete(ChannelHandlerContext ctx) {
ctx.flush();
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
cause.printStackTrace();
ctx.close();
}
}
有人可以指出我如何获取源IP地址的正确方向?非常感谢您的帮助
答案 0 :(得分:1)
源IP地址位于DatagramPacket
。
答案 1 :(得分:0)
使用:
packet.sender().getAddress()