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.
如何在 jsp中将内容设置为applicaiton/json ?
我试过下面的代码,
<%@ page language="java" contentType="application/json; charset=UTF-8" pageEncoding="UTF-8"%>
但是当我运行 JSP 文件时,我得到了这个并且页面没有在浏览器中打开。
希望我们的堆栈用户能给出最好的解决方案。
内容类型设置为application/json. JSON 字符串将像文件一样被下载,因为它不是 HTML 文档。您需要将内容设置为text/html. 但是将 JSON 数据作为内容类型返回是不正确的text/html。你想让我们具体知道什么?
application/json
text/html
页面直接应该可以工作。你也可以试试
<% response.setContentType("application/json"); %>