1
我想使用Netty ChannelHandler對Gzip
進行壓縮和解壓,我嘗試了一段時間,但總是有點困難。我的代碼如下:如何使用Netty ChannelHandler和gzip?
pipeline.addLast("decoder", new HttpRequestDecoder());
pipeline.addLast("aggregator", new HttpChunkAggregator(1048576));
pipeline.addLast("inflater", new HttpContentDecompressor());
pipeline.addLast("encoder", new HttpResponseEncoder());
pipeline.addLast("deflater", new HttpContentCompressor());
有什麼不對嗎?
你的回答是這個問題的重新排序,而我不是說這個問題應該得到更多的東西,但你碰巧有一個合理的代碼片段?請參閱https://stackoverflow.com/q/48046007/839733 –