我在RESTFul Web服务中获得了这个Java代码:
Response response = Response.ok().
entity(method(paramether)).
header("Access-Control-Allow-Origin", "*").build();
我想添加一些标题,让我通过HTTP本身将字符集设置为UTF-8(因为我在尝试仅设置文档时遇到了一些问题)。提前谢谢。
答案 0 :(得分:1)
Content-Type
,例如:
Content-Type: text/html;charset=UTF-8
答案 1 :(得分:0)
Content-Type标题可用于指定您返回的内容的类型及其字符集。
举个例子:
Content-Type: text/html; charset=utf-8
取自维基百科有关HTTP标头https://en.wikipedia.org/wiki/List_of_HTTP_header_fields
的文章