一个关于javaIO流的问题,我想把硬盘的文件用打印流读到控制台上,这下面哪里做错了
publicclassTest9{publicstaticvoidmain(String[]args){Filefile=newFile("B:\\ThisVerilog...
public class Test9 {
public static void main(String[] args) {
File file=new File("B:\\ThisVerilog\\JavaVerilog\\houqitext\\javalist.txt");
PrintWriter pw=null;
BufferedReader br=null;
try {
br=new BufferedReader(new FileReader(file));
pw=new PrintWriter(System.out);
String str;
while(null!=(str=br.readLine())){
pw.println(str);
pw.flush();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
finally
{
try {
if(null!=br)
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} 展开
public static void main(String[] args) {
File file=new File("B:\\ThisVerilog\\JavaVerilog\\houqitext\\javalist.txt");
PrintWriter pw=null;
BufferedReader br=null;
try {
br=new BufferedReader(new FileReader(file));
pw=new PrintWriter(System.out);
String str;
while(null!=(str=br.readLine())){
pw.println(str);
pw.flush();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
finally
{
try {
if(null!=br)
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} 展开
2个回答
展开全部
java.io.FileNotFoundException: B:\ThisVerilog\JavaVerilog\houqitext\javalist.txt (系统找不到指定的路径。)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:146)
at java.io.FileReader.<init>(FileReader.java:72)
at com.lvtu.struts2.test.test.ClientLine.main(ClientLine.java:18)
请问你是不是报这个错?若是,就是的文件名有问题,找不到该文件!
不过我也挺好奇,你电脑上有B盘?
追问
不是这个错 是什么都没输出 什么都没有
我电脑盘自己分的 是A、B盘,还有C、E
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询