gpt4 book ai didi

java - Java 中的 FileNotFoundException

转载 作者:太空狗 更新时间:2023-10-29 16:41:33 24 4
gpt4 key购买 nike

<分区>

我正在开发一个需要文本文件访问权限的简单 android 应用程序!我得到 filenotfoundexception 即使我在 File 构造函数中指定了文件的绝对路径。我的代码是

`File fr = new File("C:/mywork1/Dictionary/src/com/praveen/dictionary/vsn.txt");
System.out.println(fr.getAbsolutePath());
Scanner bb = new Scanner(fr);
System.out.println(fr.exists());
while((strf = bb.nextLine()) != null)
{...

之前的一些问题的答案建议改用 AssetsManager。我试过了。

AssetManager assetManager = Context.getAssets();
InputStream in = null;
in = assetManager.open("vsn.txt");

我得到的这段代码的错误是

"cannot make static reference to a non static variable"

在第一行。请帮我解决这个问题。我什至不能使用 throws 子句,因为我使用的是 onCreate 方法!我更改了运行配置中的设置,以便当前工作目录将包含我的文本文件。谢谢

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com