通过Java HTTP连接将网络图片下载到本地
只知道浏览器使用的是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. }
不懂的话看这个示例一看就知道各行代码的意思了,因为很简单,图片被写入到了C盘!
第二种方法:
Java代码
1. import java.io.File;
2. import java.io.FileOutputStream;
3. import java.io.InputStream;
4. import java.io.OutputStream;
5. import java.net.URL;
6. import java.net.URLConnection;
7.
8.
9. public class DownloadImage {
10.
11. /**
12. * @param args
13. * @throws Exception
14. */
15. public static void main(String[] args) throws Exception {
16. // TODO Auto-generated method stub
17. download("http://ui.51bi.com/opt/siteimg/images/fanbei0923/Mid_07.jpg", "51bi.gif","c:\\image\\");
18. }
19.
20. public static void download(String urlString, String filename,String savePath) throws Exception {
21. // 构造URL
22. URL url = new URL(urlString);
23. // 打开连接
24. URLConnection con = url.openConnection();
25. //设置请求超时为5s
26. con.setConnectTimeout(5*1000);
27. // 输入流
28. InputStream is = con.getInputStream();
29.
30. // 1K的数据缓冲
31. byte[] bs = new byte[1024];
32. // 读取到的数据长度
33. int len;
34. // 输出的文件流
35. File sf=new File(savePath);
36. if(!sf.exists()){
37. sf.mkdirs();
38. }
39. OutputStream os = new FileOutputStream(sf.getPath()+"\\"+filename);
40. // 开始读取
41. while ((len = is.read(bs)) != -1) {
42. os.write(bs, 0, len);
43. }
44. // 完毕,关闭所有链接
45. os.close();
46. is.close();
47. }
48.
49. }