springboot返回图片流
时间: 2023-11-09 20:52:42 浏览: 86
Spring Boot 图片压缩返回
好的,关于springboot返回图片流,可以使用以下代码:
```java
@GetMapping("/image")
public void getImage(HttpServletResponse response) throws IOException {
response.setContentType("image/jpeg");
InputStream inputStream = new URL("https://example.com/image.jpg").openStream();
IOUtils.copy(inputStream, response.getOutputStream());
}
```
这样就可以将图片流返回给前端展示了。还有什么其它问题我可以为您解答吗?
阅读全文