中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java怎么根據url下載圖片

小億
244
2023-12-09 00:09:41
欄目: 編程語言

在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替換為要保存圖片的路徑,運行代碼即可下載圖片。

0
达日县| 贵溪市| 文成县| 琼海市| 襄城县| 达拉特旗| 尉犁县| 兴文县| 锦屏县| 栾川县| 扎兰屯市| 商都县| 保山市| 嘉义县| 镇远县| 德江县| 怀仁县| 寿光市| 兴和县| 图片| 昌图县| 长汀县| 新丰县| 惠水县| 安岳县| 贡山| 湘西| 银川市| 伽师县| 高密市| 金华市| 泽州县| 许昌市| 华坪县| 罗山县| 长海县| 张北县| 即墨市| 辽宁省| 茶陵县| 洛浦县|