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

· 13년 전 · 8767
이거 고대로 사용하시면 됩니다. 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);

 

 

}

}

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

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 2,734
13년 전 조회 2,703
13년 전 조회 3,450
13년 전 조회 1,418
13년 전 조회 2,517
13년 전 조회 1,571
13년 전 조회 2,609
13년 전 조회 3,508
13년 전 조회 2,057
13년 전 조회 4,701
13년 전 조회 1.1만
13년 전 조회 1,964
13년 전 조회 3,336
13년 전 조회 2,959
13년 전 조회 3,870
13년 전 조회 6,875
13년 전 조회 3,522
13년 전 조회 3,849
13년 전 조회 1,819
13년 전 조회 1,590
13년 전 조회 2,690
13년 전 조회 6,695
13년 전 조회 2,310
13년 전 조회 5,545
13년 전 조회 1,717
13년 전 조회 4,952
13년 전 조회 2,109
13년 전 조회 1,917
13년 전 조회 2,460
13년 전 조회 2,106
13년 전 조회 1,367
13년 전 조회 1,340
13년 전 조회 2.1만
13년 전 조회 1,313
13년 전 조회 1,872
13년 전 조회 1,903
13년 전 조회 2,132
13년 전 조회 4,275
13년 전 조회 1,493
13년 전 조회 3,026
13년 전 조회 5,686
13년 전 조회 1,468
13년 전 조회 4,661
13년 전 조회 1,860
13년 전 조회 4,583
13년 전 조회 1,697
13년 전 조회 2,562
13년 전 조회 1,748
13년 전 조회 2,970
13년 전 조회 8,768
13년 전 조회 2,758
13년 전 조회 2,550
13년 전 조회 2,355
13년 전 조회 1,380
13년 전 조회 2,921
13년 전 조회 2,685
13년 전 조회 1,419
13년 전 조회 2,001
13년 전 조회 1,402
13년 전 조회 1,812
13년 전 조회 2,020
13년 전 조회 4,391
13년 전 조회 2,925
13년 전 조회 3,098
13년 전 조회 4,470
13년 전 조회 4,221
13년 전 조회 3,893
13년 전 조회 4,747
13년 전 조회 1,791
13년 전 조회 6,744
13년 전 조회 2,099
13년 전 조회 1,961
13년 전 조회 4,177
13년 전 조회 3,827
13년 전 조회 5,991
13년 전 조회 3,521
13년 전 조회 4,159
13년 전 조회 1,860
13년 전 조회 1,650
13년 전 조회 2,869
13년 전 조회 1,615
13년 전 조회 3,013
13년 전 조회 2,334
13년 전 조회 1,916
13년 전 조회 2,928
13년 전 조회 3,050
13년 전 조회 2,148
13년 전 조회 1,634
13년 전 조회 2,166
13년 전 조회 1,666
13년 전 조회 2,067
13년 전 조회 4,677
13년 전 조회 4,766
13년 전 조회 2,192
13년 전 조회 7,721
13년 전 조회 8,381
13년 전 조회 3,069
13년 전 조회 4,638
13년 전 조회 1,444
13년 전 조회 4,492