[안드로이드] assets 폴더안에 db 파일 자신 앱에 복사하기

· 13년 전 · 9384
이거 고대로 사용하시면 됩니다. main oncreate 에서 저 클래스 한번만 불러와서 쓰시면 알아서 복사가 됩니다.

public class MySQLiteOpenHelper extends SQLiteOpenHelper {

 

static String NAME = "testdb.sqlite";

static CursorFactory FACTORY = null;

static String PACKEGE = "com.example.isbnapp";

static String DB = "isbn.db";

static int VERSION  = 1;

public MySQLiteOpenHelper(Context context) {

super(context, NAME, FACTORY, VERSION);

// TODO Auto-generated constructor stub

try {

boolean bResult = isCheckDB(context);  // DB가 있는지?

Log.i("MiniApp", "DB Check="+bResult);

if(!bResult){   // DB가 없으면 복사

copyDB(context);

}else{

 

}

} catch (Exception e) {

 

}

}

// DB가 있나 체크하기

public boolean isCheckDB(Context mContext){

String filePath = "/data/data/" + PACKEGE + "/databases/" + DB;

File file = new File(filePath);

 

if (file.exists()) {

return true;

}

 

return false;

 

}

// DB를 복사하기

// assets의 /db/xxxx.db 파일을 설치된 프로그램의 내부 DB공간으로 복사하기

public void copyDB(Context mContext){

Log.d("MiniApp", "copyDB");

AssetManager manager = mContext.getAssets();

String folderPath = "/data/data/" + PACKEGE + "/databases";

String filePath = "/data/data/" + PACKEGE + "/databases/" +DB;

File folder = new File(folderPath);

File file = new File(filePath);

 

FileOutputStream fos = null;

BufferedOutputStream bos = null;

try {

InputStream is = manager.open("db/" + DB);

BufferedInputStream bis = new BufferedInputStream(is);

 

if (folder.exists()) {

}else{

folder.mkdirs();

}

 

 

if (file.exists()) {

file.delete();

file.createNewFile();

}

 

fos = new FileOutputStream(file);

bos = new BufferedOutputStream(fos);

int read = -1;

byte[] buffer = new byte[1024];

while ((read = bis.read(buffer, 0, 1024)) != -1) {

bos.write(buffer, 0, read);

}

 

bos.flush();

 

bos.close();

fos.close();

bis.close();

is.close();

 

} catch (IOException e) {

Log.e("ErrorMessage : ", e.getMessage());

} 

}

/** Called when the activity is first created. */

@Override

public void onCreate(SQLiteDatabase db) {

// String QUERY = "CREATE TABLE word (_id INTEGER PRIMARY KEY autoincrement, word_e TEXT , word_k TEXT)";

// db.execSQL(QUERY);

Log.e("ehsk", "eee");

 

//        String QUERY1 = "INSERT INTO word (word_e, word_k ) VALUES(apple , 사과)";

//        db.execSQL(QUERY1);

}

 

@Override

public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

// TODO Auto-generated method stub

String QUERY = "DROP TABLE IF EXISTS word";

db.execSQL(QUERY);

onCreate(db);

 

 

}

}

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 3,318
13년 전 조회 3,268
13년 전 조회 4,028
13년 전 조회 2,027
13년 전 조회 3,122
13년 전 조회 2,056
13년 전 조회 3,186
13년 전 조회 4,109
13년 전 조회 2,489
13년 전 조회 5,324
13년 전 조회 1.1만
13년 전 조회 2,561
13년 전 조회 3,933
13년 전 조회 3,537
13년 전 조회 4,289
13년 전 조회 7,475
13년 전 조회 3,929
13년 전 조회 4,427
13년 전 조회 2,429
13년 전 조회 2,186
13년 전 조회 3,281
13년 전 조회 7,306
13년 전 조회 2,876
13년 전 조회 6,165
13년 전 조회 2,180
13년 전 조회 5,534
13년 전 조회 2,695
13년 전 조회 2,539
13년 전 조회 2,891
13년 전 조회 2,720
13년 전 조회 1,975
13년 전 조회 1,949
13년 전 조회 2.2만
13년 전 조회 1,907
13년 전 조회 2,495
13년 전 조회 2,494
13년 전 조회 2,748
13년 전 조회 4,915
13년 전 조회 2,142
13년 전 조회 3,605
13년 전 조회 6,267
13년 전 조회 2,111
13년 전 조회 5,286
13년 전 조회 2,444
13년 전 조회 5,231
13년 전 조회 2,329
13년 전 조회 3,173
13년 전 조회 2,308
13년 전 조회 3,589
13년 전 조회 9,385
13년 전 조회 3,362
13년 전 조회 3,161
13년 전 조회 2,968
13년 전 조회 1,990
13년 전 조회 3,502
13년 전 조회 3,290
13년 전 조회 2,062
13년 전 조회 2,620
13년 전 조회 2,044
13년 전 조회 2,215
13년 전 조회 2,616
13년 전 조회 5,003
13년 전 조회 3,513
13년 전 조회 3,718
13년 전 조회 5,089
13년 전 조회 4,867
13년 전 조회 4,531
13년 전 조회 5,411
13년 전 조회 2,370
13년 전 조회 7,345
13년 전 조회 2,739
13년 전 조회 2,586
13년 전 조회 4,763
13년 전 조회 4,467
13년 전 조회 6,586
13년 전 조회 4,120
13년 전 조회 4,779
13년 전 조회 2,445
13년 전 조회 2,252
13년 전 조회 3,455
13년 전 조회 2,252
13년 전 조회 3,624
13년 전 조회 2,936
13년 전 조회 2,535
13년 전 조회 3,537
13년 전 조회 3,549
13년 전 조회 2,736
13년 전 조회 2,235
13년 전 조회 2,800
13년 전 조회 2,267
13년 전 조회 2,631
13년 전 조회 5,287
13년 전 조회 5,391
13년 전 조회 2,805
13년 전 조회 8,351
13년 전 조회 9,005
13년 전 조회 3,696
13년 전 조회 5,241
13년 전 조회 2,045
13년 전 조회 5,086