当前位置: 技术问答>java相关
为什么我的电脑读文件就错!!
来源: 互联网 发布时间:2015-10-27
本文导语: 为什么我的电脑读文件就错!! 比如:import java.io.*; public class io{ public static void main(String[] args) { try{ int b; FileInputStream in = new FileInputStream ("g:\a.txt"); while ((b=in.read())!=-1) System.out.print((char)b); in.close(); } ...
为什么我的电脑读文件就错!!
比如:import java.io.*;
public class io{
public static void main(String[] args)
{
try{
int b;
FileInputStream in = new FileInputStream ("g:\a.txt");
while ((b=in.read())!=-1)
System.out.print((char)b);
in.close();
}
catch (IOException e){
}
}
}
每次都是执行 IOException 的语句?
比如:import java.io.*;
public class io{
public static void main(String[] args)
{
try{
int b;
FileInputStream in = new FileInputStream ("g:\a.txt");
while ((b=in.read())!=-1)
System.out.print((char)b);
in.close();
}
catch (IOException e){
}
}
}
每次都是执行 IOException 的语句?
|
你g:\a.txt文件存在吗?不存在肯定执行 IOException 的语句,我调了你的程序,a.txt存在的话就运行正常了。。
|
存在就不应该出错的吧,我的机器里,你这个程序已经正常运行了。
|
这个程序很正常阿,完全可以运行的,是你的路径的问题吧?