android assets数据库,Android:使用.sqlite扩展名访问assets文件夹sqlite数据库文件

试试这段代码:public class DataBaseHelper extends SQLiteOpenHelper {

private Context mycontext;

//private String DB_PATH = mycontext.getApplicationContext().getPackageName()+"/databases/";

private static String DB_NAME = "(datbasename).sqlite";//the extension may be .sqlite or .db

public SQLiteDatabase myDataBase;

/*private String DB_PATH = "/data/data/"

+ mycontext.getApplicationContext().getPackageName()

+ "/databases/";*/

public DataBaseHelper(Context context) throws IOException {

super(context,DB_NAME,null,1);

this.mycontext=context;

boolean dbexist = checkdatabase();

if (dbexist) {

//System.out.println("Database exists");

opendatabase();

} else {

System.out.println("Database doesn't exist");

createdatabase();

}

}

public void createdatabase() throws IOException {

boolean dbexist = checkdatabase();

if(dbexist) {

//System.out.println(" Database exists.");

} else {

this.getReadableDatabase();

try {

copydatabase();

} catch(IOException e) {

throw new Error("Error copying database");

}

}

}

private boolean checkdatabase() {

//SQLiteDatabase checkdb = null;

boolean checkdb = false;

try {

String myPath = DB_PATH + DB_NAME;

File dbfile = new File(myPath);

//checkdb = SQLiteDatabase.openDatabase(myPath,null,SQLiteDatabase.OPEN_READWRITE);

checkdb = dbfile.exists();

} catch(SQLiteException e) {

System.out.println("Database doesn't exist");

}

return checkdb;

}

private void copydatabase() throws IOException {

//Open your local db as the input stream

InputStream myinput = mycontext.getAssets().open(DB_NAME);

// Path to the just created empty db

String outfilename = DB_PATH + DB_NAME;

//Open the empty db as the output stream

OutputStream myoutput = new FileOutputStream("/data/data/(packagename)/databases   /(datbasename).sqlite");

// transfer byte to inputfile to outputfile

byte[] buffer = new byte[1024];

int length;

while ((length = myinput.read(buffer))>0) {

myoutput.write(buffer,0,length);

}

//Close the streams

myoutput.flush();

myoutput.close();

myinput.close();

}

public void opendatabase() throws SQLException {

//Open the database

String mypath = DB_PATH + DB_NAME;

myDataBase = SQLiteDatabase.openDatabase(mypath, null, SQLiteDatabase.OPEN_READWRITE);

}

public synchronized void close() {

if(myDataBase != null) {

myDataBase.close();

}

super.close();

}}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值