亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
苍山县| 安西县| 册亨县| 商都县| 松原市| 涿鹿县| 长治县| 丁青县| 桂阳县| 沿河| 阿克陶县| 嘉祥县| 余江县| 黔南| 汽车| 西充县| 葵青区| 凌源市| 杭锦旗| 颍上县| 丰都县| 吉木乃县| 宽甸| 黄山市| 德清县| 台江县| 康定县| 吐鲁番市| 永善县| 江北区| 博兴县| 赣榆县| 孝义市| 泽库县| 义马市| 道真| 社旗县| 雷山县| 江源县| 新田县| 昭觉县|