InputStream is = null;
FileOutputStream fos = null;
File outDir = new File("/data/data/com.TestApp.main/databases/");
outDir.mkdirs();
try {
is = getAssets().open("codedata.db");
int size = is.available();
byte[] buffer = new byte[size];
File outfile = new File(outDir + "/" + "codedata.db");
fos = new FileOutputStream(outfile);
for (int c = is.read(buffer); c != -1; c = is.read(buffer)){
fos.write(buffer, 0, c);
}
is.close();
fos.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
'자료' 카테고리의 다른 글
[Android] Activity 생성시에 사용되는 Intent Flag 정리 (0) | 2011.07.14 |
---|---|
URL주소의 이미지를 Bitmap으로 (1) | 2011.07.13 |
둥근 모서리 만들기 (0) | 2011.06.24 |
Failed to install ~timeout (0) | 2011.06.15 |
로그인시 아이디 저장 기능(Preferences) (1) | 2011.06.14 |