我制作了一个应用程序,在其中使用了更多图像和视频,我已将所有资源放在资产的子文件夹中,而且我的数据库位于资产文件夹的子文件夹中,我想移动资产的整个子文件夹文件夹,包括 sdcard 中的文件。我的资产文件夹大小超过 30mb。
问问题
2027 次
2 回答
0
您可以访问asset的唯一方法是抛出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 是指向资产文件夹中路径的字符串数组,而 output 是指向“在 SD 卡上”的输出目录的路径字符串数组
于 2013-01-31T16:14:30.670 回答
0
试试下面的代码,将资产文件夹和文件复制到 sdcard 中。
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);
}
}
参考:使用 Java 移动文件
于 2013-01-31T16:18:44.537 回答