读取图片代码:
/**
* 获取图片。
* http://localhost:88/api/lexueManager/photo/load/48c3df11ca5f4c80bab198159e41a5de.png
* 得到项目路径下 /file/photo/48c3df11ca5f4c80bab198159e41a5de.png的图片
*/
@LoginRequired
@RequestMapping("/load/{name}")
public void loadPhoto(HttpServletResponse response,@PathVariable("name") String name) {
String photoPath = null;
try {
//得到项目中图片保存的路径
photoPath = new File("").getCanonicalPath() + File.separator + "lexue"
+ File.separator + "file" + File.separator + "photo";
} catch (IOException e) {
throw new RuntimeException("获取项目路径失败", e);
}
photoPath += File.separator + name;
//将一个图片加载到内存
BufferedImage image = null;
try {
image = ImageIO.read(new FileInputStream(photoPath));
} catch (IOException e) {
throw new RuntimeException("把图片加载到内存失败", e);
}
// 将图片输出给浏览器
response.setContentType("image/png");//声明返回的是png格式的图片。
try {
OutputStream os = response.getOutputStream();
ImageIO.write(image, "png", os);
//不用关闭这个流,spring会自动帮我们关闭这个流。
} catch (IOException e) {
throw new RuntimeException("响应图片失败,服务器发生异常!", e);
}
}
postman测试:
核心方法
把图片加载到内存:
image = ImageIO.read(new FileInputStream(photoPath));
把图片传输给浏览器:
// 将图片输出给浏览器
response.setContentType("image/png");//声明返回的是png格式的图片。
try {
OutputStream os = response.getOutputStream();
ImageIO.write(image, "png", os);
//不用关闭这个流,spring会自动帮我们关闭这个流。
} catch (IOException e) {
throw new RuntimeException("响应图片失败,服务器发生异常!", e);
}