各位大神: 如题
在android studio中, 断点看了一下 ,程序没有进 while 循环啊,result 直接是空串了.然后就直接进入 catch了. 但是使用javac 编译, 可以正常打印txt文件中的内容
public static String txtFile(File file) {
StringBuilder result = new StringBuilder();
try {
BufferedReader br = new BufferedReader(new FileReader(file));//构造一个BufferedReader类来读取文件
String s = "null";
while ((s = br.readLine()) != null) {//使用readLine方法,一次读一行
result.append(System.lineSeparator() + s);
}
br.close();
} catch (Exception e) {
e.printStackTrace();
}
return result.toString();
catch 中的异常提示 : java io fileNotFoundException D:/Fortest/test_doc/testfile.txt: open failed: ENOENT (No such file or directory)
但是本地有这个文件,因为 javac 编译通过了,而且打出了字符串 ,如下 :
但是在本地,使用javac 编译,然后运行,可以正常打印出txt 内容.
D:\test>javac Filedemo.java
D:\test>java Filedemo
Love your parents. We are too busy growing up yet we forget that they are already growing old.
The moment you think about giving up,think of the reason why you held on so long.
如果javac 编译可以通过,那说名程序没有问题啊, studio 环境问题? 求解答.
非常感谢