Java将网络地址对应的图片转成本地的图片



只知道浏览器使用的是HTTP协议,那么如何将网络资源使用JavaHTTP下载下来呢!

这只是一个非常简单的小示例,只是不想每次碰到关于此方面的内容忘了就无从下手!

示例创建HttpURLConnection网络连接,并将这个连接获得的网络数据流写道本地磁盘!

 

示例代码如下:

Java代码 复制代码  收藏代码
  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. }  
package imageView;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
/**
 * @说明 从网络获取图片到本地
 * @author 崔素强
 * @version 1.0
 * @since
 */
public class GetImage {
	/**
	 * 测试
	 * @param args
	 */
	public static void main(String[] args) {
		String url = "http://www.baidu.com/img/baidu_sylogo1.gif";
		byte[] btImg = getImageFromNetByUrl(url);
		if(null != btImg && btImg.length > 0){
			System.out.println("读取到:" + btImg.length + " 字节");
			String fileName = "百度.gif";
			writeImageToDisk(btImg, fileName);
		}else{
			System.out.println("没有从该连接获得内容");
		}
	}
	/**
	 * 将图片写入到磁盘
	 * @param img 图片数据流
	 * @param fileName 文件保存时的名称
	 */
	public static void writeImageToDisk(byte[] img, String fileName){
		try {
			File file = new File("C:\\" + fileName);
			FileOutputStream fops = new FileOutputStream(file);
			fops.write(img);
			fops.flush();
			fops.close();
			System.out.println("图片已经写入到C盘");
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	/**
	 * 根据地址获得数据的字节流
	 * @param strUrl 网络连接地址
	 * @return
	 */
	public static byte[] getImageFromNetByUrl(String strUrl){
		try {
			URL url = new URL(strUrl);
			HttpURLConnection conn = (HttpURLConnection)url.openConnection();
			conn.setRequestMethod("GET");
			conn.setConnectTimeout(5 * 1000);
			InputStream inStream = conn.getInputStream();//通过输入流获取图片数据
			byte[] btImg = readInputStream(inStream);//得到图片的二进制数据
			return btImg;
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}
	/**
	 * 从输入流中获取数据
	 * @param inStream 输入流
	 * @return
	 * @throws Exception
	 */
	public static byte[] readInputStream(InputStream inStream) throws Exception{
		ByteArrayOutputStream outStream = new ByteArrayOutputStream();
		byte[] buffer = new byte[1024];
		int len = 0;
		while( (len=inStream.read(buffer)) != -1 ){
			outStream.write(buffer, 0, len);
		}
		inStream.close();
		return outStream.toByteArray();
	}
}

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值