39

我创建了一些 jsp 文件,它作为响应返回一些 json 字符串。但我看到 Content-Type 自动设置为 txt

我的jsp代码看起来像

<%@ page import="java.util.Random" %>
<%@ page language="java" %>
<%@ page session="false" %>

<%
  String retVal = "// some json string";

     int millis = new Random().nextInt(1000);
     //    System.out.println("sleeping for " + millis + " millis");
     Thread.sleep(millis);
%>
<%=retVal%>

我怎样才能执行类似的操作

setHeader("Content-Type", "application/json");

在这个例子中?

4

3 回答 3

69

你可以通过Page 指令来做。

例如:

<%@ page language="java" contentType="application/json; charset=UTF-8"
    pageEncoding="UTF-8"%>
  • contentType="mimeType [ ;charset=characterSet ]" | “文本/html;字符集=ISO-8859-1”

JSP 文件用于发送给客户端的响应的 MIME 类型和字符编码。您可以使用对 JSP 容器有效的任何 MIME 类型或字符集。默认 MIME 类型为 text/html,默认字符集为 ISO-8859-1。

于 2012-05-15T07:12:39.577 回答
12

试试这段代码,它也应该可以工作

<%
    //response.setContentType("Content-Type", "application/json"); // this will fail compilation
    response.setContentType("application/json"); //fixed
%>
于 2012-05-15T07:13:58.023 回答
3

@Petr Mensik 和肯森约翰

谢谢,我无法使用页面指令,因为我必须根据某些 URL 参数设置不同的内容类型。我将在这里粘贴我的代码,因为它在 JSON 中很常见:

    <%
        String callback = request.getParameter("callback");
        response.setCharacterEncoding("UTF-8");
        if (callback != null) {
            // Equivalent to: <@page contentType="text/javascript" pageEncoding="UTF-8">
            response.setContentType("text/javascript");
        } else {
            // Equivalent to: <@page contentType="application/json" pageEncoding="UTF-8">
            response.setContentType("application/json");
        }

        [...]

        String output = "";

        if (callback != null) {
            output += callback + "(";
        }

        output += jsonObj.toString();

        if (callback != null) {
            output += ");";
        }
    %>
    <%=output %>

提供回调时,返回:

    callback({...JSON stuff...});

内容类型为“文本/javascript”

当未提供回调时,返回:

    {...JSON stuff...}

内容类型为“应用程序/json”

于 2013-10-23T03:15:51.567 回答