码迷,mamicode.com
首页 > 编程语言 > 详细

Java已知图片路径下载图片到本地

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

标签:puts   while   red   pre   try   下载   rgba   rgs   print   

 public static void main(String[] args)
    {
        FileOutputStream fos = null;
        BufferedInputStream bis = null;
        HttpURLConnection httpUrl = null;
        int size = 0;
        byte[] buf = new byte[1024];

        File file = new File("E:/" + "1.jpg");
        try
        {
            URL url = new URL("https://images.cnblogs.com/cnblogs_com/qq1445496485/1909145/o_2103030645361045.jpg");
            httpUrl = (HttpURLConnection)url.openConnection();
            httpUrl.connect();
            bis = new BufferedInputStream(httpUrl.getInputStream());
            fos = new FileOutputStream(file);
            while ((size = bis.read(buf)) != -1)
            {
                fos.write(buf, 0, size);
            }
            fos.flush();
            fos.close();
            bis.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }

    }

 

Java已知图片路径下载图片到本地

标签:puts   while   red   pre   try   下载   rgba   rgs   print   

原文地址:https://www.cnblogs.com/qq1445496485/p/14844464.html

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