我正在使用嵌入Java的netty 4.1并尝试从管道中的客户端POST请求中检索数据。我尝试了在网上找到的几个选项,但没有任何作用......
也许有人对此有一个有用的想法。
关心并感谢所有帮助过的人。
管道:
p.addLast ("codec", new HttpServerCodec ());
p.addLast("decoder", new HttpRequestDecoder());
p.addLast("encoder", new HttpRequestEncoder());
p.addLast("handler",new InboundHandlerA());
处理程序:
private static class InboundHandlerA extends ChannelInboundHandlerAdapter{
@Override
public void channelActive(ChannelHandlerContext ctx) {
System.out.println("Connected!");
ctx.fireChannelActive();
}
public void channelRead (ChannelHandlerContext channelHandlerCtxt, Object msg) throws Exception {
System.out.println(msg);
}
}