如何将资源文件夹的所有子文件夹移动到android中的sdcard

时间:2013-01-31 15:55:13

标签: android

我做了一个应用程序,我正在使用更多的图像&视频,我已将所有资源放在资产和文件的子文件夹中。我的数据库也在资源文件夹的子文件夹中,我想移动资产文件夹的整个子文件夹,包括sdcard中的文件。 我的资源文件夹大小超过30mb。

2 个答案:

答案 0 :(得分:0)

你可以访问assest的唯一方法是抛出assetManager来获取它们的输入。

所以你的代码必须看起来像这样。

    for (int i = 1; i < files.length ; i++) {
        try{
         InputStream is = aManager.open(files[i]);
         OutputStream os = new FileOutputStream(output[i]);
         read = 0;
         buffer = new byte[1024];
         while (read != -1) {
              read = is.read(buffer, 0, buffer.length);
               if (read == -1)
                    break;
               os.write(buffer, 0, read);
          }
       } finally {
              is.close();
              os.close();
    }}

其中files是一个字符串数组到资源文件夹中的pathes,输出是一个输出目录“在SD卡上”的字符串数组

答案 1 :(得分:0)

尝试使用以下代码复制资源文件夹&amp;文件到SD卡。

private void copyAssets() {
    AssetManager assetManager = getAssets();
    String[] files = null;
    try {
        files = assetManager.list("");
    } catch (IOException e) {
        Log.e("tag", "Failed to get asset file list.", e);
    }
    for(String filename : files) {
        InputStream in = null;
        OutputStream out = null;
        try {
          in = assetManager.open(filename);
          out = new FileOutputStream("/sdcard/" + filename);
          copyFile(in, out);
          in.close();
          in = null;
          out.flush();
          out.close();
          out = null;
        } catch(IOException e) {
            Log.e("tag", "Failed to copy asset file: " + filename, e);
        }       
    }
}
private 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);
    }
}

参考:Move file using Java