我需要在我的应用程序中使用一些文件。它们保存在资产文件夹中。我看到了关于 SO 的讨论,其中文件从资产文件夹复制到内部存储上的 /data/data/<package_name>,然后被使用。我得到了代码,但我没有得到的是,将资产复制到内部存储需要什么?
问问题
31080 次
4 回答
8
试试这个:(使用它对我的工作的所有三种方法,并在“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);
}
}
于 2014-04-07T04:37:19.010 回答
8
对我来说刚刚弹出的一个原因是当使用现有的 C/C++ 代码和需要文件路径的 NDK 时,您不想修改该代码。
例如,我正在使用需要一些数据文件的现有 C 库,并且唯一现有的接口是一些“加载(字符 * 路径)”函数。
也许实际上有一些更好的方法,但我还没有找到任何方法。
于 2014-08-29T13:42:28.087 回答
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();
}
于 2015-06-21T22:07:15.973 回答
0
我认为您无法在运行时或安装应用程序后编辑/修改资产文件夹中的数据。所以我们将文件移动到内部文件夹然后开始处理它。
于 2014-08-04T12:17:00.530 回答