• java.lang.IllegalStateException:


    java.lang.IllegalStateException: getOutputStream() has already been called for this response;
    该错误信息一般会在文件下载过程中出现,主要是因为ServletResponse.getOutputStream()方法和public java.io.PrintWriter getWriter()两个方法发生冲突,其中的一个方法被调用了,再调用另一个方法就会抛出异常。

    Servlet的API中解释为:

    public java.io.PrintWriter getWriter()
    throws java.io.IOException
    
        Returns a PrintWriter object that can send character text to the client. The PrintWriter uses the character encoding returned by getCharacterEncoding(). If the response's character encoding has not been specified as described in getCharacterEncoding (i.e., the method just returns the default value ISO-8859-1), getWriter updates it to ISO-8859-1.
    
        Calling flush() on the PrintWriter commits the response.
    
        Either this method or getOutputStream() may be called to write the body, not both.
    
    
    
        Returns:
            a PrintWriter object that can return character data to the client 
        Throws:
            UnsupportedEncodingException - if the character encoding returned by getCharacterEncoding cannot be used 
            java.lang.IllegalStateException - if the getOutputStream method has already been called for this response object 
            java.io.IOException - if an input or output exception occurred 
        See Also:
            getOutputStream(), setCharacterEncoding(java.lang.String)

    解决方法:在使用完response.getOutputStream()的后面加上两句:

    out.clear();//清空缓存的内容,此处out为JSPWriter 对象。
    out = pageContext.pushBody();

    ·返回一个新的BodyContent(代表一个HTML页面的BODY部分内容)
    ·保存JspWriter实例的对象out
    ·更新PageContext的out属性的内容

    public BodyContent pushBody()
    
        Return a new BodyContent object, save the current "out" JspWriter, and update the value of the "out" attribute in the page scope attribute namespace of the PageContext.
    
        Returns:
            the new BodyContent
  • 相关阅读:
    Sql日期时间格式转换
    c#被指定为此窗体的 MdiParent 的窗体不是 MdiContainer?
    kmeans聚类分析
    C# VS2005打开没问题,但是运行解决方案时就整个自动关闭了
    PowerDesigner教程系列(一)概念数据模型
    PowerDesigner概念设计模型(CDM)中的3种实体关系
    spss clementine Twostep Cluster(两步聚类 二阶聚类)
    PowerDesigner教程系列(三)概念数据模型
    Kmeans聚类算法
    c# 中窗体居中代码怎么写?
  • 原文地址:https://www.cnblogs.com/lllini/p/11955324.html
Copyright © 2020-2023  润新知