我想在我的手机上以偏离模式备份我的偏好,保证一旦卸载了应用程序,此首选项就会保留!!
如果有人可以给我发一个好的教程或明确的步骤,我会感谢你!
答案 0 :(得分:1)
抱歉,但这是不可能的。您可以编写在卸载后幸存的文件的唯一地方是用户可以删除这些文件的地方。
答案 1 :(得分:1)
https://stackoverflow.com/a/11135800/3750554
要重申上述链接所说的内容,您可以使用以下代码在Android上复制文件夹:
// If targetLocation does not exist, it will be created.
public void copyDirectory(File sourceLocation , File targetLocation)
throws IOException {
if (sourceLocation.isDirectory()) {
if (!targetLocation.exists() && !targetLocation.mkdirs()) {
throw new IOException("Cannot create dir " + targetLocation.getAbsolutePath());
}
String[] children = sourceLocation.list();
for (int i=0; i<children.length; i++) {
copyDirectory(new File(sourceLocation, children[i]),
new File(targetLocation, children[i]));
}
} else {
// make sure the directory we plan to store the recording in exists
File directory = targetLocation.getParentFile();
if (directory != null && !directory.exists() && !directory.mkdirs()) {
throw new IOException("Cannot create dir " + directory.getAbsolutePath());
}
InputStream in = new FileInputStream(sourceLocation);
OutputStream out = new FileOutputStream(targetLocation);
// Copy the bits from instream to outstream
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
}
我假设你想要备份一个应用程序。您可以将其位置/data/data
复制到您选择备份的位置。
或者,如果您有终端模拟器(如果没有,则Google Play商店中有多个模拟器),您可以采用POSIX方式进行操作并使用cp
。
cp -r /data/data/<app> <backup location>
然而,CommonsWare是对的。无论你在哪里复制你的东西,用户都可以删除它们。