平常一些数据都是在数据库文件写好的,但是安卓却没有直接导入的功能。
android系统下数据库一般存放在/data/data/com.*.*(package name)/ 目录下,所以我们需要做的是把已有的数据库传入那个目录下。
操作方法是用FileInputStream读取原数据库,再用FileOutputStream把读取到的东西写入到那个目录。
以Android studio工程为例
操作方法:1. 在java和res的同级目录下,新建assets目录,把原数据库platform_home.db文件(db文件可以用SQLiteExpertPers.exe工具查看和编辑)放在在项目源码的assets 目录下
2、编写拷贝资源文件的方法copyAssetsFile,注意:资源文件的获取方法如下:
context.getClass().getClassLoader()
.getResourceAsStream("assets/" + fileNmae); //读入资源文件
/**
* 复制资源文件
* @param context
* @param desPath
* @param fileNmae
*/
public static void copyAssetsFile(Context context, String desPath,String fileNmae) {
try {
int bytesum = 0;
int byteread = 0;
File desfile = new File(desPath+"/"+fileNmae);
if (!desfile.exists()) { //文件不存在时
InputStream inStream = context.getClass().getClassLoader()
.getResourceAsStream("assets/" + fileNmae); //读入资源文件
FileOutputStream fs = new FileOutputStream(desPath+"/"+fileNmae);
byte[] buffer = new byte[4096];
int length;
while ( (byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; //字节数 文件大小
fs.write(buffer, 0, byteread);
fs.flush();
}
fs.close();
inStream.close();
LogUtil.i("数据库已拷贝!");
}
}
catch (Exception e) {
LogUtil.i("复制单个文件操作出错");
e.printStackTrace();
}
}
3、如果拷贝成功的话,DDMS可以看到下图,然后获取数据库。
private
SQLiteDatabase database;
database
= SQLiteDatabase.openOrCreateDatabase(DBManager.DB_PATH + "/"
+ DBManager.DB_NAME,
null
);