通过Java HTTP连接将网络图片下载到本地

  1. package imageView;  
  2. import java.io.ByteArrayOutputStream;  
  3. import java.io.File;  
  4. import java.io.FileOutputStream;  
  5. import java.io.InputStream;  
  6. import java.net.HttpURLConnection;  
  7. import java.net.URL;  
  8. /** 
  9.  * @说明 从网络获取图片到本地 
  10.  * @author 崔素强 
  11.  * @version 1.0 
  12.  * @since 
  13.  */  
  14. public class GetImage {  
  15.     /** 
  16.      * 测试 
  17.      * @param args 
  18.      */  
  19.     public static void main(String[] args) {  
  20.         String url = "http://www.baidu.com/img/baidu_sylogo1.gif";  
  21.         byte[] btImg = getImageFromNetByUrl(url);  
  22.         if(null != btImg && btImg.length > 0){  
  23.             System.out.println("读取到:" + btImg.length + " 字节");  
  24.             String fileName = "百度.gif";  
  25.             writeImageToDisk(btImg, fileName);  
  26.         }else{  
  27.             System.out.println("没有从该连接获得内容");  
  28.         }  
  29.     }  
  30.     /** 
  31.      * 将图片写入到磁盘 
  32.      * @param img 图片数据流 
  33.      * @param fileName 文件保存时的名称 
  34.      */  
  35.     public static void writeImageToDisk(byte[] img, String fileName){  
  36.         try {  
  37.             File file = new File("C:\\" + fileName);  
  38.             FileOutputStream fops = new FileOutputStream(file);  
  39.             fops.write(img);  
  40.             fops.flush();  
  41.             fops.close();  
  42.             System.out.println("图片已经写入到C盘");  
  43.         } catch (Exception e) {  
  44.             e.printStackTrace();  
  45.         }  
  46.     }  
  47.     /** 
  48.      * 根据地址获得数据的字节流 
  49.      * @param strUrl 网络连接地址 
  50.      * @return 
  51.      */  
  52.     public static byte[] getImageFromNetByUrl(String strUrl){  
  53.         try {  
  54.             URL url = new URL(strUrl);  
  55.             HttpURLConnection conn = (HttpURLConnection)url.openConnection();  
  56.             conn.setRequestMethod("GET");  
  57.             conn.setConnectTimeout(5 * 1000);  
  58.             InputStream inStream = conn.getInputStream();//通过输入流获取图片数据  
  59.             byte[] btImg = readInputStream(inStream);//得到图片的二进制数据  
  60.             return btImg;  
  61.         } catch (Exception e) {  
  62.             e.printStackTrace();  
  63.         }  
  64.         return null;  
  65.     }  
  66.     /** 
  67.      * 从输入流中获取数据 
  68.      * @param inStream 输入流 
  69.      * @return 
  70.      * @throws Exception 
  71.      */  
  72.     public static byte[] readInputStream(InputStream inStream) throws Exception{  
  73.         ByteArrayOutputStream outStream = new ByteArrayOutputStream();  
  74.         byte[] buffer = new byte[1024];  
  75.         int len = 0;  
  76.         while( (len=inStream.read(buffer)) != -1 ){  
  77.             outStream.write(buffer, 0, len);  
  78.         }  
  79.         inStream.close();  
  80.         return outStream.toByteArray();  
  81.     }  
  82. }  
  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值