Android - 从assets复制文件到/data/data文件夹

14

我需要在我的应用程序中使用一些文件,它们保存在asset文件夹中。我在SO上看到讨论,其中文件从asset文件夹复制到内部存储器的/data/data/<包名>,然后使用。

我理解了这段代码,但我不明白的是,为什么需要将assets复制到内部存储器?


1
请参考此链接:https://dev59.com/nmIk5IYBdhLWcg3wfOSf - user3355820
1
@user3355820 我明白我们如何将资产复制到内部存储或外部存储。我知道两者都是可能的,例如,这里有一些从资产复制文件到内部存储的示例代码 - https://dev59.com/12Up5IYBdhLWcg3wCD_4。但我不明白为什么会这样做。将资产复制到内部/外部存储的意义是什么。 - superuser
4个回答

9

请尝试以下方法:(我使用了所有三种方法,并将目标路径分配到“toPath”字符串对象中)

  String toPath = "/data/data/" + getPackageName();  // Your application path


   private static boolean copyAssetFolder(AssetManager assetManager,
            String fromAssetPath, String toPath) {
        try {
            String[] files = assetManager.list(fromAssetPath);
            new File(toPath).mkdirs();
            boolean res = true;
            for (String file : files)
                if (file.contains("."))
                    res &= copyAsset(assetManager, 
                            fromAssetPath + "/" + file,
                            toPath + "/" + file);
                else 
                    res &= copyAssetFolder(assetManager, 
                            fromAssetPath + "/" + file,
                            toPath + "/" + file);
            return res;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }

    private static boolean copyAsset(AssetManager assetManager,
            String fromAssetPath, String toPath) {
        InputStream in = null;
        OutputStream out = null;
        try {
          in = assetManager.open(fromAssetPath);
          new File(toPath).createNewFile();
          out = new FileOutputStream(toPath);
          copyFile(in, out);
          in.close();
          in = null;
          out.flush();
          out.close();
          out = null;
          return true;
        } catch(Exception e) {
            e.printStackTrace();
            return false;
        }
    }

    private static void copyFile(InputStream in, OutputStream out) throws IOException {
        byte[] buffer = new byte[1024];
        int read;
        while((read = in.read(buffer)) != -1){
          out.write(buffer, 0, read);
        }
    }

3
正确的想法,但您不应该将/data目录硬编码(因为它可能会更改),而是应该在运行时通过适当的API发现它。 - Chris Stratton
@LavekushAgrawal 这段代码将复制到 "/data/data/" + getPackageName()... 但这并不完全是 /data/data/ - ben75
@ben75,您能否请根据我的回答进行编辑,这将有助于其他人。谢谢。 - Lavekush Agrawal
2
为什么不使用<application Context>getFilesDir()方法,而是使用“/data/data/<package name>”呢? - Gensoukyou1337
当我尝试执行二进制资产时,出现了“权限被拒绝”的错误。 - Daniel C Jacobs
显示剩余2条评论

8

我想到的一个原因是使用现有的需要文件路径的NDK C/C++代码,而你又不想修改该代码。

例如,我正在使用一个现有的C库,它需要一些数据文件,而唯一存在的接口是"load(char* path)"函数。

也许有更好的方法,但我还没有找到。


2
public final String path = "/data/data/com.aliserver.shop/databases/";
public final String Name = "store_db";

public void _copydatabase() throws IOException {

        OutputStream myOutput = new FileOutputStream(path + Name);
        byte[] buffer = new byte[1024];
        int length;
        InputStream myInput = MyContext.getAssets().open("store_db");
        while ((length = myInput.read(buffer)) > 0) {
            myOutput.write(buffer, 0, length);
        }
        myInput.close();
        myOutput.flush();
        myOutput.close();

    }

0

我认为你无法在运行时或应用程序安装后编辑/修改资产文件中的数据。因此,我们将文件移动到内部文件夹,然后开始处理它。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接