所以问题是我无法在Android中读取文件。
代码是
Quotenprognose quoten = new Quotenprognose2013(new Beliebtheiten(new AsciiQuelle(new File("lotto_2011_2013.txt"))), 2011);
,错误是一个简单的NullPointerException。 整个过程都是普通的Java应用程序,但不是app。 我是否将路径格式错误? 只是忽略我自己的类,我确定错误在
new File("lotto_2011_2013.txt")
一部分。
感谢您的建议!
答案 0 :(得分:0)
您应该将文件放在getFilesDir()
中。您无权在其他地方读取/写入文件。
new File(getFilesDir(), "lotto_2011_2013.txt")