码迷,mamicode.com
首页 > 编程语言 > 详细

Java常用代码

时间:2017-11-08 19:40:36      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:span   技术   read   close   output   url   etc   one   失败   

1. 下载网络图片

技术分享
 1 public void download(String strUrl, String filename){
 2     try{
 3         URL url = new URL(strUrl);
 4         HttpURLConnection  conn = (HttpURLConnection) url.openConnection();
 5         conn.setConnectTimeout(5*1000);  
 6         conn.connect();
 7         InputStream in = conn.getInputStream();
 8         
 9         OutputStream out = new FileOutputStream(new File(filename));
10         
11         byte[] buf = new byte[1024];
12         int len = 0;
13         while((len = in.read(buf)) != -1){
14             out.write(buf, 0, len);
15         }
16         in.close();
17         out.close();
18         System.out.println(filename + "下载成功");
19     }catch(Exception e){
20         System.out.println(filename + "下载失败");
21     }
22 }
View Code

 

Java常用代码

标签:span   技术   read   close   output   url   etc   one   失败   

原文地址:http://www.cnblogs.com/lhat/p/7805117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!