一个关于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个回答
深圳市容大彩晶科技有限公司
2024-11-20 广告
2024-11-20 广告
作为深圳市容大彩晶科技有限公司的工作人员,我可以确认**我们的广告机支持USB接口和SD卡读取**。无论是车载液晶广告机还是其他类型的广告机产品,都具备这一功能,便于用户通过USB或SD卡更新和播放视频、图片等广告内容。这一设计大大提升了广...
点击进入详情页
本回答由深圳市容大彩晶科技有限公司提供
展开全部
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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询