gpt4 book ai didi

java - Netty - 如何检测/提取帖子的内容?

转载 作者:可可西里 更新时间:2023-11-01 16:09:32 29 4
gpt4 key购买 nike

我正在使用 Netty 5.0 并且对它的 http 功能还是很陌生。我需要通过 json 字符串在 Netty 服务器和 JavaScript 应用程序之间进行通信。

服务器处理程序非常简单,如下代码:

public class HttpServerHandler extends SimpleChannelInboundHandler<Object> {
@Override
protected void messageReceived(ChannelHandlerContext ctx, Object msg) throws Exception {
System.out.println(msg);
}
}

初始化代码:

public class NettyHttpServerInitializer extends ChannelInitializer<SocketChannel> {
@Override
public void initChannel(SocketChannel ch) throws Exception {
ChannelPipeline pipeline = ch.pipeline();

pipeline.addLast("framer", new DelimiterBasedFrameDecoder(8192, Delimiters.lineDelimiter()));
pipeline.addLast("decoder", new StringDecoder(Charset.forName("UTF-8")));
pipeline.addLast("encoder", new StringEncoder(Charset.forName("UTF-8")));
pipeline.addLast("handler", new HttpServerHandler());
}
}

每当客户端通过 post 方法发送一个 json 字符串时,服务器打印出:

POST / HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Content-Length: 51
Origin: http://127.0.0.1:8888
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: */ *
Referer: http://127.0.0.1:8888/MyWebApp02.html
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8

{"cmd":"he", "ver":1, "dvt":3}

我需要的只是最后一行,json 字符串。但是,服务器接收到的输入是多字符串,我无法将它们转换为高级结构(例如 HttpRequest )来获取该内容。我可以解析/检查所有字符串以检测 json 字符串,但看起来这是最糟糕的方法。我试图改进代码(例如使用 SimpleChannelInboundHandler<FullHttpRequest> ,删除 DelimiterBasedFrameDecoder )但到目前为止没有运气。

最佳答案

要制作网络服务器,您应该使用 HttpServerCodec结合可选的 HttpObjectAggregator .

您的 ChannelInitializer 应如下所示:

public class NettyHttpServerInitializer extends ChannelInitializer<SocketChannel> {
@Override
public void initChannel(SocketChannel ch) throws Exception {
ChannelPipeline pipeline = ch.pipeline();
pipeline.addLast("http", new HttpServerCodec());

// optional, makes life easier
pipeline.addLast("dechunker", new HttpObjectAggregator(65536));

pipeline.addLast("handler", new HttpServerHandler());
}
}

如果存在 HttpObjectAggregator 或不同类型的 HttpRequest 消息,您的处理程序将随后处理 FullHttpRequest(这更难,请参阅 this示例)。

我的回答主要集中在我们收到 FullHttpRequest .

当接收到 FullHttpRequest 时,我们可以做一些事情:

  • 使用request.getUri()获取uri>
  • 获取request.getMethod()使用的HTTP方法
  • 使用 request.headers() 获取 header
  • 使用 request.content() 获取 POST/PUT 请求的内容

要回答你的问题,你应该先调用request.getMethod()检查方法是POST还是PUT,然后调用request.content()得到内容。

例子:

public class HttpServerHandler extends SimpleChannelInboundHandler<FullHttpRequest> {
@Override
protected void messageReceived(ChannelHandlerContext ctx, FullHttpRequest msg) throws Exception {
if(msg.getMethod().equals(HttpMethod.POST) || msg.getMethod().equals(HttpMethod.PUT)) {
System.out.println(msg.content().toString(Charset.forName("UTF-8")));
}
}
}

关于java - Netty - 如何检测/提取帖子的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34991616/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com