설.현.아빠
웹에 존재하는 파일 SD Card에 다운로드하기. 본문
silent한 installer 구현하다가 사용한 소스입니다.
용량이 큰 파일은 InputStream이 바로 닫히지 않으므로 중간에 progress나 wait상태 처리해주셔야합니다.
좋은 개발 되시길 바랍니다~
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
}
}
'안드로이드 > File' 카테고리의 다른 글
[Java2] URL을 화일로 저장하는 예제 입니다.. (0) | 2011.02.11 |
---|---|
url에서 파일 다운로드 (0) | 2011.02.11 |
FileReader FileNotFoundException 관련 질문(StringTokenizer 사용 예제 포함) (0) | 2011.02.11 |
FileReader(문자스트림)와 FileInputStream(바이트스트림)의 차이를 이해하자. (0) | 2011.02.11 |
FileReader / FileWriter (0) | 2011.02.11 |