• 下载文件:java.lang.IllegalStateException: getOutputStream() has already been called for this respons


    原因:response.getWriter()和response.getOutputStream()相冲突造成的.
    解决办法:
    response这个对象是Servlet自己管理的,之所以出现上面的错误:

    1.网上都说跟Output之类其他的输出流相互排斥了。
    2.也可能是多次调用那个Struts里面定义的方法。
    3.最后查出原因:Struts方法之间调用引起的。

    因为:每个方法都返回的是一个ActionForward对象,而response是ActionForward对象参数,所以就会使response冲突! return null就ok了.

    代码例子:

    result = StrUtil.getXmlStringFormJSON(json, this.getNewList(list,exter));  
    result = result.replaceAll("'", """);  
    HttpServletResponse response = exter.getResponse();  
    response.flushBuffer();  
    ops = response.getOutputStream();  
    log.info("result111 is " + result);  
    ops.write(result.getBytes("UTF-8"));  
    ops.flush();  
    return null;  

    在实际的例子中,需要在最后返回null就可以的了。

  • 相关阅读:
    CTF-cookies欺骗
    CTF-速度要快100
    php实现登录注册界面
    CTF-秋名山老司机 100
    三大类型语句
    PHP运算符
    标记风格和注释
    连接串口服务器时的注意事项
    RS485转以太网的概述和应用领域
    工业级路由器的优点有哪些
  • 原文地址:https://www.cnblogs.com/lllini/p/11955230.html
Copyright © 2020-2023  润新知