码迷,mamicode.com
首页 > 其他好文 > 详细

网络下载器

时间:2017-06-25 18:38:04      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:put   响应   trace   log   网络   inpu   null   set   数据   

网络下载器:

public static void main(String[] args) {
            OutputStream  download=null;
            HttpURLConnection conn=null;
            try {
                URL    url=new URL
("http://dlc2.pconline.com.cn/filedown_171040_8417060/Yx2PSEuB/jpwb2017cl.exe");
                conn=(HttpURLConnection) url.openConnection();
                conn.setRequestMethod("GET");
                conn.setConnectTimeout(3000);
                 System.out.println("响应码:"+conn.getResponseCode());
                if(conn.getResponseCode()==200){
                    InputStream  readInfo=conn.getInputStream();
                    download=new FileOutputStream("f:\\jpwb2.exe");
                    byte[]  data=new byte[1024*100];
                    int len=0;
                    
                    while( (len=readInfo.read(data))!=-1){
                        System.out.println("从服务器上面读取了"+(len/1024.0)+"KB的数据");
                        download.write(data, 0, len);
                        download.flush();
                    }
                    System.out.println("-----文件下载成功----");
                }
            } catch (MalformedURLException e) {             
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }finally{
                if(download!=null){
                    try {
                        download.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
                if(conn!=null){
                    conn.disconnect();                }
            }
        }

 

网络下载器

标签:put   响应   trace   log   网络   inpu   null   set   数据   

原文地址:http://www.cnblogs.com/by-1642146903/p/7077374.html

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