标题 MyEclipse10+默认tomcat6.0+默认jdk1.6
项目场景:使用jsp内置对象response对象,创建一个普通的web项目运行jsp时,然后向客户端输出二进制流,实现下载功能。结果报错。
问题描述:
不多bb,直接上代码,目录结构
<%@ page language="java" import="java.util.*" import="java.io.*" pageEncoding="ISO-8859-1"%>
<%
int status = 0 ;
byte b[] = new byte[1024];
FileInputStream in = null;
ServletOutputStream out2= null;
try{
response.setHeader("content-disposition", "attachment; filename=d.zip");
in = new FileInputStream(request.getServletContext().getRealPath("/")+"//d.zip");
out2 =response.getOutputStream();
while(status != -1)
{
status=in.read(b);
out2.write(b);
}
out2.flush();
}catch(Exception e){
System.out.println(e);
response.sendRedirect("downError.jsp");
}
finally
{
if(in!=null)
in.close();
if(out2 != null)
out2.close();
}
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My JSP 'downloadfile.jsp' starting page</title>
</head>
<body>
</body>
</html>
原因分析:
根据报错的原因org.apache.jasper.JasperException: Unable to compile class for JSP:
到csdn上搜,大多解决方案都是jdk版本过高或tomcat版本过低,一般都是升到1.8或tomcat7.0
我这边更换了jdk没用,版本问题还是存在,然后根据报错的页面
description:The server encountered an internal error () that prevented it from fulfilling this request.
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 9 in the jsp file: /downloadfile.jsp
The method getServletContext() is undefined for the type HttpServletRequest
6: ServletOutputStream out2= null;
7: try{
8: response.setHeader("content-disposition", "attachment; filename=d.zip");
9: in = new FileInputStream(request.getServletContext().getRealPath("/")+"//d.zip");
10: out2 =response.getOutputStream();
11: while(status != -1)
12: {
他说我这第九行有问题,然后根据description翻译过来,我感觉是tomcat版本过低,支持不了request.getServeltContext( )的方法,然后在一位老哥的帖子下看到了
解决方案:
提示:这里填写该问题的具体解决方案:
例如:新建一个 Message 对象,并将读取到的数据存入 Message,然后 mHandler.obtainMessage(READ_DATA, bytes, -1, buffer).sendToTarget();换成 mHandler.sendMessage()。
idea2021.1创建一个新的web项目,环境:jdk1.8+tomcat8.5
代码没删改,直接可以运行
结果:这边建议跟我一样的初学者,自学者,小白,使用的教材要是古老了一点(学校订购的远古教材,还教jsp的java ee课本),就把环境配成现在主流的样子,起码,还能向下兼容一些特性,而一些老掉牙的方法,如果在新版本中已经去掉,你也大可不必学,因为新版本中一定会有比它更优的方法来替代它,提升效率。好了,废话不多说,这篇笔记记录一下学jsp路上,遇到的tomcat版本过久问题。希望对后来的人能有所帮助。
今天的文章org.apache.jasper.JasperException: Unable to compile class for JSP:分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/27712.html