Android 数据库打包随APK发布的实例代码
其实很简单,就是把我们的数据库文件放到我们的手机里,所以不必局限在哪个地方写这个代码,在第一次创建数据库的时候可以,我觉得在软件起动页里效果更好一点,首先我们应该把事先写好的数据库文件比如 test.db放到res文件夹里的raw文件夹里,也可以放到assets里,因为这两个文件夹不会在生成apk的时候不会被压缩。
1,databaseutil用于将raw中的db文件copy到手机中,代码如下
import java.io.file;
import java.io.fileoutputstream;
import java.io.ioexception;
import java.io.inputstream;
import android.content.context;
import android.database.sqlite.sqlitedatabase;
import android.database.sqlite.sqliteexception;
import com.ata.app.r;
/**
* copy数据库到apk包
*
* @author ngj
*
*/
public class databaseutil {
private context context;
public static string dbname = "kao.db";// 数据库的名字
private static string database_path;// 数据库在手机里的路径
public databaseutil(context context) {
this.context = context;
string packagename = context.getpackagename();
database_path="/data/data/"+packagename+"/databases/";
}
/**
* 判断数据库是否存在
*
* @return false or true
*/
public boolean checkdatabase() {
sqlitedatabase db = null;
try {
string databasefilename = database_path + dbname;
db = sqlitedatabase.opendatabase(databasefilename, null,sqlitedatabase.open_readonly);
} catch (sqliteexception e) {
}
if (db != null) {
db.close();
}
return db != null ? true : false;
}
/**
* 复制数据库到手机指定文件夹下
*
* @throws ioexception
*/
public void copydatabase() throws ioexception {
string databasefilenames = database_path + dbname;
file dir = new file(database_path);
if (!dir.exists())// 判断文件夹是否存在,不存在就新建一个
dir.mkdir();
fileoutputstream os = new fileoutputstream(databasefilenames);// 得到数据库文件的写入流
inputstream is = context.getresources().openrawresource(r.raw.kao);// 得到数据库文件的数据流
byte[] buffer = new byte[8192];
int count = 0;
while ((count = is.read(buffer)) > 0) {
os.write(buffer, 0, count);
os.flush();
}
is.close();
os.close();
}
}
2,在需要的activity中加入如下方法用于具体的copy操作
java代码
privatevoid copydatabasetophone() {
databaseutil util = new databaseutil(this);
// 判断数据库是否存在
boolean dbexist = util.checkdatabase();
if (dbexist) {
log.i("tag", "the database is exist.");
} else {// 不存在就把raw里的数据库写入手机
try {
util.copydatabase();
} catch (ioexception e) {
thrownew error("error copying database");
}
}
}
3,检测是否有sdcard,执行copy。(个人感觉可以不检测sd卡是否存在,但不检测似乎有个问题,程序原因?)
boolean hassdcard = environment.getexternalstoragestate().equals(environment.media_mounted);
if(hassdcard){
copydatabasetophone();
}else{
showtoast("未检测到sdcard");
}