Java netty获取POST请求内容

时间:2016-04-07 11:23:21

标签: java netty

我正在使用嵌入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);
     }
    }

0 个答案:

没有答案