91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
南昌市| 离岛区| 华安县| 张家界市| 望城县| 临朐县| 广灵县| 镇坪县| 白城市| 民丰县| 乌拉特中旗| 镇远县| 万荣县| 舒城县| 璧山县| 纳雍县| 佛教| 鲁甸县| 清涧县| 宁陕县| 芒康县| 景东| 基隆市| 碌曲县| 武冈市| 安溪县| 大名县| 岳阳县| 岱山县| 景洪市| 太谷县| 永新县| 石嘴山市| 石狮市| 城固县| 姜堰市| 新乐市| 仙游县| 石门县| 洪雅县| 吉木乃县|