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

· 13년 전 · 9546
이거 고대로 사용하시면 됩니다. 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년 전 조회 3,490
13년 전 조회 3,465
13년 전 조회 4,211
13년 전 조회 2,201
13년 전 조회 3,310
13년 전 조회 2,121
13년 전 조회 3,382
13년 전 조회 4,286
13년 전 조회 2,569
13년 전 조회 5,512
13년 전 조회 1.2만
13년 전 조회 2,736
13년 전 조회 4,119
13년 전 조회 3,737
13년 전 조회 4,363
13년 전 조회 7,669
13년 전 조회 4,003
13년 전 조회 4,624
13년 전 조회 2,646
13년 전 조회 2,364
13년 전 조회 3,476
13년 전 조회 7,502
13년 전 조회 3,064
13년 전 조회 6,360
13년 전 조회 2,257
13년 전 조회 5,723
13년 전 조회 2,885
13년 전 조회 2,716
13년 전 조회 2,950
13년 전 조회 2,906
13년 전 조회 2,158
13년 전 조회 2,133
13년 전 조회 2.2만
13년 전 조회 2,081
13년 전 조회 2,693
13년 전 조회 2,670
13년 전 조회 2,913
13년 전 조회 5,102
13년 전 조회 2,313
13년 전 조회 3,808
13년 전 조회 6,441
13년 전 조회 2,271
13년 전 조회 5,466
13년 전 조회 2,639
13년 전 조회 5,409
13년 전 조회 2,521
13년 전 조회 3,397
13년 전 조회 2,499
13년 전 조회 3,751
13년 전 조회 9,547
13년 전 조회 3,556
13년 전 조회 3,330
13년 전 조회 3,187
13년 전 조회 2,182
13년 전 조회 3,696
13년 전 조회 3,490
13년 전 조회 2,236
13년 전 조회 2,793
13년 전 조회 2,228
13년 전 조회 2,291
13년 전 조회 2,805
13년 전 조회 5,169
13년 전 조회 3,683
13년 전 조회 3,916
13년 전 조회 5,274
13년 전 조회 5,031
13년 전 조회 4,710
13년 전 조회 5,605
13년 전 조회 2,565
13년 전 조회 7,526
13년 전 조회 2,909
13년 전 조회 2,763
13년 전 조회 4,948
13년 전 조회 4,640
13년 전 조회 6,755
13년 전 조회 4,297
13년 전 조회 4,978
13년 전 조회 2,637
13년 전 조회 2,445
13년 전 조회 3,642
13년 전 조회 2,416
13년 전 조회 3,791
13년 전 조회 3,103
13년 전 조회 2,728
13년 전 조회 3,693
13년 전 조회 3,593
13년 전 조회 2,898
13년 전 조회 2,406
13년 전 조회 2,951
13년 전 조회 2,446
13년 전 조회 2,799
13년 전 조회 5,475
13년 전 조회 5,591
13년 전 조회 2,978
13년 전 조회 8,493
13년 전 조회 9,167
13년 전 조회 3,886
13년 전 조회 5,416
13년 전 조회 2,212
13년 전 조회 5,255