java怎么根据url下载图片

68次阅读
没有评论

共计 1075 个字符,预计需要花费 3 分钟才能阅读完成。

在 Java 中,可以使用 URLHttpURLConnection类来下载图片。以下是一个简单的示例代码:

import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

public class ImageDownloader {public static void main(String[] args) {String imageUrl = "http://example.com/image.jpg";
        String destinationPath = "C:/path/to/save/image.jpg";
        
        try {URL url = new URL(imageUrl);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET");
            
            InputStream inputStream = connection.getInputStream();
            BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);
            
            FileOutputStream fileOutputStream = new FileOutputStream(destinationPath);
            
            byte[] buffer = new byte[1024];
            int bytesRead;
            while ((bytesRead = bufferedInputStream.read(buffer)) != -1) {fileOutputStream.write(buffer, 0, bytesRead);
            }
            
            fileOutputStream.close();
            bufferedInputStream.close();
            
            System.out.println("Image downloaded successfully.");
        } catch (IOException e) {e.printStackTrace();
        }
    }
}

只需将 imageUrl 替换为要下载的图片的 URL,将 destinationPath 替换为要保存图片的路径,运行代码即可下载图片。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-09发表,共计1075字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)