티스토리 뷰
public void HttpDown(String Url, String FileName)
{
URL imageDownUrl;
int Read;
try {
imageDownUrl = new URL(Url);
HttpURLConnection conn= (HttpURLConnection)imageurl.openConnection();
conn.connect();
int len = conn.getContentLength();
byte[] raster = new byte[len];
InputStream is = conn.getInputStream();
FileOutputStream fos = openFileOutput(FileName, MODE_WORLD_READABLE);
for (;;)
{
Read = is.read(raster);
if (Read <= 0)
{
break;
}
fos.write(raster,0, Read);
}
is.close();
fos.close();
} catch (Exception e) {
System.out.println("error");
return;
}
}
'개발 > 개발 자료' 카테고리의 다른 글
(Android) overridePendingTransition( int enterAnim, int exitAnim ) (0) | 2014.08.13 |
---|---|
(JSP) Mysql, Oracle 등 DB데이터를 엑셀로 다운받는방법 (0) | 2014.08.03 |
(설치) cocos2d-x v3.1.1 설치 및 빌드 (mac osx) (0) | 2014.06.08 |
(Android) ListView 스크롤바 입맛대로 바꿔보기 (0) | 2014.05.09 |
(Android) WebView에서 한글이 깨질때의 처리방법 (0) | 2014.05.09 |
댓글