我有一个扩展providertestcase2的测试类。
我想用一些.db文件中的数据填充这个测试类数据库。
是否有特定的方法将一些.db文件推送到providertestcase2的模拟上下文中?
否则,哪种方法更容易从.db文件填充数据库?啊!
非常感谢!啊!
最佳答案
如何从SD卡或类似的文件中复制预先存在的.db文件?这是一段快速的代码,可以帮助您完成以下任务:
private void importDBFile(File importDB) {
String dataDir = Environment.getDataDirectory().getPath();
String packageName = getPackageName();
File importDir = new File(dataDir + "/data/" + packageName + "/databases/");
if (!importDir.exists()) {
Toast.makeText(this, "There was a problem importing the Database", Toast.LENGTH_SHORT).show();
return;
}
File importFile = new File(importDir.getPath() + "/" + importDB.getName());
try {
importFile.createNewFile();
copyDB(importDB, importFile);
Toast.makeText(this, "Import Successful", Toast.LENGTH_SHORT).show();
} catch (IOException ex) {
Toast.makeText(this, "There was a problem importing the Database", Toast.LENGTH_SHORT).show();
}
}
private void copyDB(File from, File to) throws IOException {
FileChannel inChannel = new FileInputStream(from).getChannel();
FileChannel outChannel = new FileOutputStream(to).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} finally {
if (inChannel != null)
inChannel.close();
if (outChannel != null)
outChannel.close();
}
}
希望这对你的场景有用
关于android - 如何在Android中填充测试数据库?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3257856/