在JSP的类中无法使用FileInputStream读取文件内容
在JSP的类中无法使用FileInputStream读取文件内容,但是在JSP主体中同样的代码却可以正常运行,请问为什么:<%@pagelanguage="java"%>...
在JSP的类中无法使用FileInputStream读取文件内容,但是在JSP主体中同样的代码却可以正常运行,请问为什么:
<%@ page language="java" %>
<%@ page import="java.io.*" %>
<%@ page import="java.util.*" %>
<%!
public class HelloJava {
HelloJava() {
}
String onlyTest() {
String str="";
FileInputStream fis = new FileInputStream("D:\\1.log"); //此处报错:Unhandled exception type FileNotFoundException
byte[] bbuf = new byte[1024];
int hasRead = 0;
while((hasRead = fis.read(bbuf))>0)
{
str=str+new String(bbuf,0,hasRead);
}
fis.close();
return(str);
}
}
%>
<%
HelloJava abc = new HelloJava();
out.println(abc.onlyTest());
/*
out.println("===========================<br>");
String str="";
FileInputStream fis = new FileInputStream("D:\\1.log");
byte[] bbuf = new byte[1024];
int hasRead = 0;
while((hasRead = fis.read(bbuf))>0)
{
str=str+new String(bbuf,0,hasRead);
}
fis.close();
out.print(str);
*/
%>
运行时报错:
An error occurred at line: 10 in the jsp file: /fileTest2.jsp
Unhandled exception type FileNotFoundException
10: FileInputStream fis = new FileInputStream("D:\\1.log");
An error occurred at line: 13 in the jsp file: /fileTest2.jsp
Unhandled exception type IOException
13: while((hasRead = fis.read(bbuf))>0)
An error occurred at line: 17 in the jsp file: /fileTest2.jsp
Unhandled exception type IOException
17: fis.close(); 展开
<%@ page language="java" %>
<%@ page import="java.io.*" %>
<%@ page import="java.util.*" %>
<%!
public class HelloJava {
HelloJava() {
}
String onlyTest() {
String str="";
FileInputStream fis = new FileInputStream("D:\\1.log"); //此处报错:Unhandled exception type FileNotFoundException
byte[] bbuf = new byte[1024];
int hasRead = 0;
while((hasRead = fis.read(bbuf))>0)
{
str=str+new String(bbuf,0,hasRead);
}
fis.close();
return(str);
}
}
%>
<%
HelloJava abc = new HelloJava();
out.println(abc.onlyTest());
/*
out.println("===========================<br>");
String str="";
FileInputStream fis = new FileInputStream("D:\\1.log");
byte[] bbuf = new byte[1024];
int hasRead = 0;
while((hasRead = fis.read(bbuf))>0)
{
str=str+new String(bbuf,0,hasRead);
}
fis.close();
out.print(str);
*/
%>
运行时报错:
An error occurred at line: 10 in the jsp file: /fileTest2.jsp
Unhandled exception type FileNotFoundException
10: FileInputStream fis = new FileInputStream("D:\\1.log");
An error occurred at line: 13 in the jsp file: /fileTest2.jsp
Unhandled exception type IOException
13: while((hasRead = fis.read(bbuf))>0)
An error occurred at line: 17 in the jsp file: /fileTest2.jsp
Unhandled exception type IOException
17: fis.close(); 展开
4个回答
展开全部
FileNotFoundException,文件没有被找到异常
追问
D盘肯定有1.log文件。因为我使用下面的注释里的代码都可以
追答
windows路径反斜杠问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-07-04
展开全部
FileInputStream fis = new FileInputStream(new File("D:\\1.log"))
追问
加new File 还是一样,D盘肯定有1.log文件。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先new file
追问
加new File 还是一样,D盘肯定有1.log文件。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
D盘有没有1.log文件?
更多追问追答
追问
D盘肯定有1.log文件。因为我使用下面的注释里的代码都可以
追答
把你这一些处理放在Try{}catch{}内再执行一遍试试。
报的错误是Unhandled exception type FileNotFoundException
你没有捕捉异常。。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询