欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何设置 mime-type 或者 response.setContentType

程序员文章站 2022-07-14 18:38:07
...

具体如何设置 response.setContentType,可以根据你需要响应返回的数据,
查看 Tomcat 下的 conf 下的 web.xml
如何设置 mime-type 或者 response.setContentType
比如我们这里要返回一个 JSON 的响应数据:
如何设置 mime-type 或者 response.setContentType
所以可以设置为:

response.setContentType("application/json;charset=utf-8");
相关标签: json java