使用Netty提供的Http服务,org.jboss.netty.handler.codec.http.HttpResponse
设置编码格式
HttpResponse response = new DefaultHttpResponse(HTTP_1_1, OK);
response.headers().set("Content-Type", "application/json;charset=utf-8");
Content-Type字段
简介:
MediaType,即是Internet Media Type,互联网媒体类型;也叫做MIME类型,在Http协议消息头中,使用Content-Type来表示具体请求中的媒体类型信息。
常见的媒体格式类型如下:
- text/html : HTML格式
- text/plain :纯文本格式
- text/xml : XML格式
- image/gif :gif图片格式
- image/jpeg :jpg图片格式
- image/png:png图片格式
以application开头的媒体格式类型:
- application/xhtml+xml :XHTML格式
- application/xml : XML数据格式
- application/atom+xml :Atom XM