我想从文件夹res / raw /中打开一个文件。我绝对确定该文件存在。打开我尝试过的文件
File ddd = new File("res/raw/example.png");
命令
ddd.exists();
产生FALSE。因此,此方法不起作用。
试
MyContext.getAssets().open("example.png");
最终以getMessage()“ null”出现异常。
只需使用
R.raw.example
这是不可能的,因为文件名仅在运行时称为字符串。
为什么访问/ res / raw /文件夹中的文件如此困难?