반응형
public void save(){
String str = "/data/log";
try{
File intputfile = new File(str, "/dumpstate_app_error.txt.gz");
FileInputStream fis = new FileInputStream(intputfile);
File outputfile = new File(SDCARD_Path, "/dumpstate_app_error.txt.gz");
FileOutputStream fos = new FileOutputStream(outputfile);
byte[] data = new byte[fis.available()];
while (fis.read(data) != -1){
fos.write(data);
Log.i("Write", data.toString());
}
fis.close();
fos.close();
Toast.makeText(context, "/sdcard에 저장되었습니다.", Toast.LENGTH_SHORT).show();
}catch(Exception e){
e.printStackTrace();
}
}
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
이클립스 단축키 (0) | 2012.11.28 |
---|---|
[안드로이드] 마켓에서 어플 다운받기로 바로가기 (0) | 2012.11.27 |
Android Sdk Index (0) | 2012.10.30 |
이클립스 단축키 모음 (0) | 2012.10.22 |
이클립스 단축키 정리 (0) | 2012.10.22 |