java将图片链接转成流
时间: 2024-06-09 15:07:55 浏览: 143
你可以使用 Java 中的 `URL` 和 `URLConnection` 类来将图片链接转换为流,示例代码如下:
```java
import java.io.*;
import java.net.*;
public class ImageToStream {
public static void main(String[] args) {
try {
// 图片链接
URL url = new URL("http://example.com/image.jpg");
// 打开链接
URLConnection conn = url.openConnection();
// 获取输入流
InputStream in = conn.getInputStream();
// 输出流
OutputStream out = new FileOutputStream("image.jpg");
// 将输入流写入输出流
byte[] buffer = new byte[1024];
int len;
while ((len = in.read(buffer)) != -1) {
out.write(buffer, 0, len);
}
// 关闭流
in.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
这段代码将从指定的图片链接中获取输入流,并将其写入到文件中。你可以根据需要修改这段代码,例如将输出流改为字节数组,或者使用其他的输入输出流类。
阅读全文