美文网首页
下载excel出错,出现请检查互联网连接状况

下载excel出错,出现请检查互联网连接状况

作者: 尘埃里的玄 | 来源:发表于2022-11-23 11:19 被阅读0次
image.png
image.png

出现问题原因


image.png
image.png

不返回改成void

原理:
产生这样的异常原因:是web容器生成的servlet代码中有out.write(""),
这个和JSP中调用的response.getOutputStream()产生冲突.即Servlet规范说明,
不能既调用response.getOutputStream(),又调用response.getWriter(),
无论先调用哪一个,在调用第二个时候应会抛出IllegalStateException,因为在jsp中,
返回retrun xxx,你的程序中又调用了response.getOutputStream,故出现以上错误

相关文章

网友评论

      本文标题:下载excel出错,出现请检查互联网连接状况

      本文链接:https://www.haomeiwen.com/subject/aurzxdtx.html