-
웹에 존재하는 파일 Stream을 이용해서 다운로드 하기안드로이드/개발코드 2014. 1. 29. 17:54
String src="http://192.168.1.106/football.3gp";
String des="sdcard/temp1357.3gp";
InputStream in = null;
OutputStream out = null;
try{
in = new BufferedInputStream(new URL(src).openStream());
out = new BufferedOutputStream(new FileOutputStream(des));
int read;
while(true){
read = in.read();
if(read == -1) break;
out.write(read);
}
in.close();
out.close();
finish();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
System.out.println("aa");
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println("bb");
} finally {
if (in != null)
try {
System.out.println("cc");
in.close();
} catch (IOException e) {
System.out.println("dd");
// TODO Auto-generated catch block
}
if (out != null)
try {
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
}
}
'안드로이드 > 개발코드' 카테고리의 다른 글
volley로 post request 코드 (0) 2022.02.16 AlertDialog 사용하기 (0) 2014.01.29 안드로이드 간편 스레드 기본 구조 (0) 2014.01.29 안드로이드의 Timer 기능 (0) 2014.01.29 안드로이드 전체화면 만들기 (상태바, 타이틀바 제거) (0) 2011.02.18