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

· 13년 전 · 8846
이거 고대로 사용하시면 됩니다. 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,807
13년 전 조회 2,772
13년 전 조회 3,522
13년 전 조회 1,497
13년 전 조회 2,591
13년 전 조회 1,576
13년 전 조회 2,702
13년 전 조회 3,580
13년 전 조회 2,058
13년 전 조회 4,766
13년 전 조회 1.1만
13년 전 조회 2,043
13년 전 조회 3,433
13년 전 조회 3,029
13년 전 조회 3,875
13년 전 조회 6,966
13년 전 조회 3,528
13년 전 조회 3,925
13년 전 조회 1,912
13년 전 조회 1,671
13년 전 조회 2,776
13년 전 조회 6,772
13년 전 조회 2,390
13년 전 조회 5,622
13년 전 조회 1,725
13년 전 조회 5,018
13년 전 조회 2,192
13년 전 조회 2,006
13년 전 조회 2,468
13년 전 조회 2,205
13년 전 조회 1,437
13년 전 조회 1,429
13년 전 조회 2.1만
13년 전 조회 1,403
13년 전 조회 1,961
13년 전 조회 2,001
13년 전 조회 2,228
13년 전 조회 4,383
13년 전 조회 1,580
13년 전 조회 3,111
13년 전 조회 5,776
13년 전 조회 1,555
13년 전 조회 4,750
13년 전 조회 1,947
13년 전 조회 4,665
13년 전 조회 1,784
13년 전 조회 2,655
13년 전 조회 1,821
13년 전 조회 3,052
13년 전 조회 8,847
13년 전 조회 2,847
13년 전 조회 2,639
13년 전 조회 2,425
13년 전 조회 1,459
13년 전 조회 3,002
13년 전 조회 2,775
13년 전 조회 1,516
13년 전 조회 2,087
13년 전 조회 1,490
13년 전 조회 1,815
13년 전 조회 2,119
13년 전 조회 4,474
13년 전 조회 3,018
13년 전 조회 3,185
13년 전 조회 4,552
13년 전 조회 4,324
13년 전 조회 3,983
13년 전 조회 4,852
13년 전 조회 1,884
13년 전 조회 6,837
13년 전 조회 2,192
13년 전 조회 2,035
13년 전 조회 4,266
13년 전 조회 3,924
13년 전 조회 6,080
13년 전 조회 3,620
13년 전 조회 4,268
13년 전 조회 1,954
13년 전 조회 1,755
13년 전 조회 2,980
13년 전 조회 1,718
13년 전 조회 3,111
13년 전 조회 2,435
13년 전 조회 2,012
13년 전 조회 3,011
13년 전 조회 3,061
13년 전 조회 2,253
13년 전 조회 1,729
13년 전 조회 2,271
13년 전 조회 1,770
13년 전 조회 2,154
13년 전 조회 4,756
13년 전 조회 4,865
13년 전 조회 2,288
13년 전 조회 7,847
13년 전 조회 8,490
13년 전 조회 3,175
13년 전 조회 4,740
13년 전 조회 1,536
13년 전 조회 4,575