解决方案 »

  1.   

    可能是forward之前Response就提交了,贴出代码看看。
      

  2.   

    <%@ page contentType = "text/html;charset=gb2312" %>
    <%@ taglib prefix="s" uri="/struts-tags" %>
    <html>
    <head>
    <title>123</title>
    </head>
    <body>
    <jsp:forward page="abcd.action" />
    </body>
    </html>我的jsp页面 就这么点东西
      

  3.   

    用 response.redirect() 试试
      

  4.   

    这种错误一般是,你在redirect之后还做了其他操作,你将redirect放在你的处理方法的最后一行应该就没问题了。