创建文件对象(Android)

时间:2017-06-27 21:06:48

标签: java android

请帮忙。

我正在尝试使用目录路径创建File对象。这是我的代码

String dirPath = "/app/src/main/res/xml/sample.xml";
File source = new File(dirPath);
Log.v("file test", "exists " + source.exists());

但Log-message表示源(我的代码示例中的File对象)不存在。但它确实存在,我在我的项目结构中看到它。

1 个答案:

答案 0 :(得分:0)

sample.xml必须放置在资产文件夹中,以便您能够访问它。