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

时间:2022-03-14 22:32:05


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

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

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

示例代码如下:

  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 > ){
  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( * );
  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[];
  75. int len = ;
  76. while( (len=inStream.read(buffer)) != - ){
  77. outStream.write(buffer, , 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();
	}
}