java将网络图片转为inputstream流
时间: 2024-06-08 18:05:40 浏览: 237
java读取图片文件流
4星 · 用户满意度95%
可以使用Java的URL类来获取网络图片的InputStream流,示例代码如下:
```java
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
public class NetworkImageToInputStream {
public static void main(String[] args) {
String imageUrl = "https://example.com/image.jpg";
try {
URL url = new URL(imageUrl);
InputStream inputStream = url.openStream();
// 使用inputStream进行其他操作
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
其中,`imageUrl`为网络图片的URL地址,`url.openStream()`方法会返回该地址对应的InputStream流。你可以使用这个流进行其他的操作,比如将其写入文件或者传输到其他地方。
阅读全文