gpt4 book ai didi

java - 如何从网络服务器下载图像到java SE应用程序

转载 作者:行者123 更新时间:2023-12-02 08:32:39 26 4
gpt4 key购买 nike

如何将图像从 Web 服务器下载到 Java SE 应用程序。

我已经找到了 ME 应用程序的代码,但显然 javax 包不在 SE 开发中。有人可以帮我吗

最佳答案

这应该可以解决问题:

       import java.io.*;
import java.net.*;

...

try {
URL fileUrl = new URL("someurl);
BufferedInputStream in = new BufferedInputStream(fileUrl.openStream());
FileOutputStream fos = new FileOutputStream("/home/user/download/file");
BufferedOutputStream bout = new BufferedOutputStream(fos, BUFFER_SIZE);
byte[] data = new byte[1024];
int x;

while ((x = in.read(data, 0, 1024)) >= 0) {
bout.write(data, 0, x);
}

bout.close();
in.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}

关于java - 如何从网络服务器下载图像到java SE应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2934023/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com