我需要在我的应用中使用一些文件。它们保存在资产文件夹中。我看到SO上的讨论,文件从资产文件夹复制到内部存储上的/ data / data /,然后被使用。 我得到了代码,但我没有得到的是,将资产复制到内部存储需要什么? 如果有人有这方面的经验,请帮助!
答案 0 :(得分:8)
刚刚出现的一个原因是,当使用现有的带有NDK的C / C ++代码时,需要一个文件路径并且您不想修改该代码。
例如,我使用的是需要一些数据文件的现有C库,而现有的唯一接口是一些" load(char * path)"功能
也许实际上有一些更好的方法,但我还没有找到任何方法。
答案 1 :(得分:6)
试试这个:(使用所有三种方法为我工作并在" 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);
}
}
答案 2 :(得分:1)
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();
}
答案 3 :(得分:0)
我认为您无法在运行时或安装应用程序后编辑/修改资产文件夹中的数据。因此,我们将文件移动到内部文件夹然后开始处理。