我需要在我的应用程序中添加一些文件,并且这些文件必须在应用程序安装后解压到 sd 卡。在安卓上可以吗?我怎么能做到这一点?
问问题
94 次
1 回答
2
将文件添加到您的资源/原始目录。当应用程序运行时,您可以检查目标文件是否存在。如果不存在,请解压并写入 SD 卡:
File dest = Environment.getExternalStorageDirectory();
InputStream in = context.getResources().openRawResource(R.raw.file);
// Used the File-constructor
OutputStream out = new FileOutputStream(new File(dest, "file.zip"));
// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
try {
// A little more explicit
while ( (len = in.read(buf, 0, buf.length)) != -1){
out.write(buf, 0, len);
}
} finally {
// Ensure the Streams are closed:
in.close();
out.close();
}
于 2012-09-02T17:19:30.953 回答