/**
* 礼包图片下载
* @return
*/
@GetMapping(value= "/dowloadPacketImage")
public void dowloadPacketImage( HttpServletResponse response, String packetPicPath){
if(StringUtils.isBlank(packetPicPath)) {
logger.info("礼包图片路径为空");
return;
}
String imgName = packetPicPath.substring(packetPicPath.lastIndexOf(File.separator) + 1);
DownloadUtil.downloadFile(response, packetPicPath, imgName);
}
public static void downloadFile(HttpServletResponse response, String filePath, String fileName) {
OutputStream responseStream = null;
try {
byte[] resultBytes = FileUtils.readFileToByteArray(new File(filePath));
// response.setCharacterEncoding("UTF-8");
response.setContentType("application/octet-stream");
response.setHeader("Content-Disposition", "attachment;fileName=" + fileName);
responseStream = response.getOutputStream();
responseStream.write(resultBytes, 0, resultBytes.length);
responseStream.flush();
response.flushBuffer();
} catch (Exception e) {
if (null != responseStream) {
try {
responseStream.close();
} catch (IOException ignored) {
}
}
}
}
get
请求的,那么就用<img />
标签,src
属性直接设置返回流的地址.<img />
标签的src
属性