Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以知道Netty如何通过 http 处理 Image 吗?任何示例或教程?
基本上我想知道:
1)如何接收客户端上传的图片
2)如何通过http响应回复图片
这是接收上传文件的示例。
这是提供任何类型文件(包括图像文件)的示例。
希望这可以帮助。
图像数据就像任何其他数据一样;在 Content-Type 方面有意义的字节流(准确地说是八位字节),例如 image/jpeg。另请注意,处理压缩/解压缩可能对 Content-Encoding 感兴趣。netty.io 上的示例源中应该有足够的信息来帮助您前进。