码迷,mamicode.com
首页 > Web开发 > 详细

从网页下载图片的代码

时间:2017-08-07 20:44:07      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:span   inpu   tps   perm   auto   main   png   网页   while   

import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

public class DownLoad {
    public static void main(String[]args){
        try {
            URL url = new URL("https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png");
            try {
            URLConnection bd= url.openConnection();
            InputStream in = bd.getInputStream();
            
            BufferedOutputStream bo = new BufferedOutputStream(new FileOutputStream("D:/baiduCopy.png"));
            byte[]b= new byte[1024];
            int n=-1;
            while((n=in.read(b))!=-1){
                bo.write(b, 0, n);
            }
            in.close();
            bo.close();
            
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    
        
    }
}

 

从网页下载图片的代码

标签:span   inpu   tps   perm   auto   main   png   网页   while   

原文地址:http://www.cnblogs.com/-strong/p/7300916.html

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