" getOutputStream()已被调用"同时在jsp页面中使用jnlp标签

时间:2018-02-08 10:31:54

标签: java jsp jnlp

我试图从jsp页面转到jnlp文件以获取用户注册的指纹, 文件如下..

    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
    String path = request.getContextPath();
    String protocol = request.getScheme();
    String domain = request.getServerName();
    String port = Integer.toString(request.getServerPort());
    String a = protocol + "://" + domain + ":" + port + path;
    path = protocol + "://" + domain + ":" + port + path + "/";
%>
<%@page contentType="application/x-java-jnlp-file" pageEncoding="UTF-8"%>
<%@taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="<%=path%>" href="">
    <information>
        <title>Mytitle</title>
        <vendor>Myvendor</vendor>
    </information>
    <security><all-permissions/></security>
    <resources>
        <!-- Application Resources -->
        <j2se version="1.6+"  href="http://java.sun.com/products/auto/j2se"/>
        <jar href="jnlp/FingerPrintApplet.jar" main="true"/>
    </resources>
    <application-desc main-class="ui.InvitationApplet">
        <argument>${firstName}</argument>
        <argument>${lastName}</argument>
        <argument>${loginId}</argument>
        <argument>${roleId}</argument>
        <argument>${urlCode}</argument>
        <argument>${mainRecordOfficer}</argument>
        <argument>${middleName}</argument>
        <argument>${employeeId}</argument>
        <argument>${createdBy}</argument>
        <argument><%=a%></argument>
        <argument>${invitedUnder}</argument>
        <argument>${login_type}</argument>
    </application-desc>
</jnlp>

但每次点击jsp页面时,jnlp都会被下载,但我会遇到异常

  

java.lang.IllegalStateException:已为此响应调用了getOutputStream()

我也知道这个例外是由于&#34;空格&#34;对于已编译的jsp文件中的新行,为此我还在jsp

的顶部添加了以下行
<%@ page trimDirectiveWhitespaces="true" %>

但我仍然遇到同样的问题,然后我也做了一些愚蠢的事情,比如手动删除jsp文件中的空格,如

<%@ page .....%><%@ page.....%>

但仍然是同样的例外。 感谢先进的精确解决方案。

1 个答案:

答案 0 :(得分:1)

这是因为,默认情况下在jsp页面中保留了空格,这可能会作为一行添加到输出中,因此上面解释的异常就会消除,只需在web.xml中添加以下行即可这应该是固定的。

<jsp-config>
  <jsp-property-group>
    <url-pattern>*.jsp</url-pattern>
    <trim-directive-whitespaces>true</trim-directive-whitespaces>
  </jsp-property-group>
</jsp-config>