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

· 13년 전 · 8866
이거 고대로 사용하시면 됩니다. 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,821
13년 전 조회 2,783
13년 전 조회 3,534
13년 전 조회 1,513
13년 전 조회 2,602
13년 전 조회 1,577
13년 전 조회 2,715
13년 전 조회 3,601
13년 전 조회 2,058
13년 전 조회 4,783
13년 전 조회 1.1만
13년 전 조회 2,057
13년 전 조회 3,447
13년 전 조회 3,041
13년 전 조회 3,875
13년 전 조회 6,977
13년 전 조회 3,529
13년 전 조회 3,941
13년 전 조회 1,926
13년 전 조회 1,683
13년 전 조회 2,790
13년 전 조회 6,786
13년 전 조회 2,408
13년 전 조회 5,631
13년 전 조회 1,725
13년 전 조회 5,028
13년 전 조회 2,204
13년 전 조회 2,017
13년 전 조회 2,468
13년 전 조회 2,226
13년 전 조회 1,453
13년 전 조회 1,444
13년 전 조회 2.1만
13년 전 조회 1,415
13년 전 조회 1,991
13년 전 조회 2,016
13년 전 조회 2,245
13년 전 조회 4,398
13년 전 조회 1,598
13년 전 조회 3,120
13년 전 조회 5,795
13년 전 조회 1,571
13년 전 조회 4,758
13년 전 조회 1,969
13년 전 조회 4,674
13년 전 조회 1,804
13년 전 조회 2,669
13년 전 조회 1,830
13년 전 조회 3,063
13년 전 조회 8,867
13년 전 조회 2,865
13년 전 조회 2,652
13년 전 조회 2,431
13년 전 조회 1,479
13년 전 조회 3,018
13년 전 조회 2,788
13년 전 조회 1,534
13년 전 조회 2,101
13년 전 조회 1,506
13년 전 조회 1,818
13년 전 조회 2,134
13년 전 조회 4,500
13년 전 조회 3,035
13년 전 조회 3,202
13년 전 조회 4,570
13년 전 조회 4,341
13년 전 조회 4,004
13년 전 조회 4,875
13년 전 조회 1,899
13년 전 조회 6,861
13년 전 조회 2,214
13년 전 조회 2,050
13년 전 조회 4,277
13년 전 조회 3,942
13년 전 조회 6,095
13년 전 조회 3,636
13년 전 조회 4,279
13년 전 조회 1,965
13년 전 조회 1,771
13년 전 조회 2,996
13년 전 조회 1,734
13년 전 조회 3,130
13년 전 조회 2,450
13년 전 조회 2,026
13년 전 조회 3,026
13년 전 조회 3,062
13년 전 조회 2,274
13년 전 조회 1,745
13년 전 조회 2,284
13년 전 조회 1,785
13년 전 조회 2,168
13년 전 조회 4,775
13년 전 조회 4,881
13년 전 조회 2,302
13년 전 조회 7,869
13년 전 조회 8,509
13년 전 조회 3,191
13년 전 조회 4,748
13년 전 조회 1,548
13년 전 조회 4,594