InputStream inputStream = null;
FileOutputStream fileOutputStream = null;
byte[] buf = new byte[100];
try {
inputStream = new URL("http://xxx.xxx.xxx.xx/target.dat").openStream();
String file_name = "result.dat";
fileOutputStream = openFileOutput(file_name, MODE_WORLD_READABLE);
int cnt = 0;
while((cnt = inputStream.read(buf )) != -1) {
fileOutputStream.write(buf , 0, cnt);
fileOutputStream.flush();
}
} catch (MalformedURLException e) {
} catch (IOException e) {
} finally {
try {
if(inputStream != null) inputStream.close();
if(fileOutputStream != null) fileOutputStream.close();
} catch(IOException ie) {}
}
FileOutputStream fileOutputStream = null;
byte[] buf = new byte[100];
try {
inputStream = new URL("http://xxx.xxx.xxx.xx/target.dat").openStream();
String file_name = "result.dat";
fileOutputStream = openFileOutput(file_name, MODE_WORLD_READABLE);
int cnt = 0;
while((cnt = inputStream.read(buf )) != -1) {
fileOutputStream.write(buf , 0, cnt);
fileOutputStream.flush();
}
} catch (MalformedURLException e) {
} catch (IOException e) {
} finally {
try {
if(inputStream != null) inputStream.close();
if(fileOutputStream != null) fileOutputStream.close();
} catch(IOException ie) {}
}
'스마트폰 > 안드로이드' 카테고리의 다른 글
xml에서 intent 호출하는 방법 (0) | 2011.11.30 |
---|---|
preference 변수 저정하고 읽는 방법 (0) | 2011.11.30 |
안드로이드 개발시 100가지 팁 (5) | 2011.07.12 |
안드로이드 타이머(Timmer) 사용하는 방법. (1) | 2011.05.27 |
안드로이드 초보자 가이드 어플 강추!!! (1) | 2011.05.25 |