Java下载图片方法
|
803次阅读|
作者:小豆豆
摘要:Java下载图片方法
01 | package com.webkfa.test; |
03 | import java.io.FileOutputStream; |
04 | import java.io.IOException; |
05 | import java.io.InputStream; |
06 | import java.io.OutputStream; |
07 | import java.net.HttpURLConnection; |
10 | public static void main(String[] args) throws IOException{ |
12 | System.out.println( "下载完成" ); |
17 | * @param localPath c:/ |
18 | * @param localFileName 下载下来的别名 1.png |
20 | public static void downImg(String imgUrl,String localPath,String localFileName){ |
22 | OutputStream os = new FileOutputStream(localPath+localFileName); |
23 | URL uobj = new URL(imgUrl); |
24 | HttpURLConnection httpUrl = (HttpURLConnection) uobj.openConnection(); |
26 | InputStream fis = httpUrl.getInputStream(); |
27 | byte [] buf = new byte [ 255 ]; |
29 | while ((len = fis.read(buf)) != - 1 ) { |
30 | os.write(buf, 0 , len); |
36 | } catch (Exception e) { |