如何将getFilesDir()传递给Files对象:因为getFilesDir()返回dir的路径?

时间:2015-07-18 04:04:12

标签: android

我是Java的新手,所以请有人向我解释这些东西:

res = getResources();     
try {
        IO.transferFiles(getFilesDir(),res);
    } catch (IOException e) {

    }

以上代码位于OnCreate()

class IO{
public static void transferFiles(File base, Resources res) throws IOException {
    //statement
        }

}}

所以我的问题是,如果我们将getFilesDir()方法传递给文件对象(此处为base)会发生什么。 (如果可以的话,请提供任何链接)

1 个答案:

答案 0 :(得分:1)

参考:example 它返回设备内部存储的绝对文件路径,不需要权限。但是当你想用它读取文件或写一个文件时,你需要在Manifest文件中声明<uses-permission>。 对于example

Internal and external file storage