|
@@ -288,8 +288,7 @@ public class CompatibleOldFileServiceImpl implements CompatibleOldFileService {
|
|
}
|
|
}
|
|
// 3.通过文件流的方式下载文件
|
|
// 3.通过文件流的方式下载文件
|
|
InputStream inputStream = service.download(fileInfo.getFileBucket(), fileInfo.getFilePath(), response, fileInfo.getFileName());
|
|
InputStream inputStream = service.download(fileInfo.getFileBucket(), fileInfo.getFilePath(), response, fileInfo.getFileName());
|
|
- IoUtil.copy(inputStream,response.getOutputStream());
|
|
|
|
- IoUtil.close(inputStream);
|
|
|
|
|
|
+ IoUtil.write(response.getOutputStream(),false,IoUtil.readBytes(inputStream));
|
|
// 4.2021年12月22日12:00:21,先申请下载地址,然后通过重定向的方式直接请求文件服务器进行下载
|
|
// 4.2021年12月22日12:00:21,先申请下载地址,然后通过重定向的方式直接请求文件服务器进行下载
|
|
// String fetchUrl = service.fetchUrl(fileInfo.getFileBucket(), fileInfo.getFilePath());
|
|
// String fetchUrl = service.fetchUrl(fileInfo.getFileBucket(), fileInfo.getFilePath());
|
|
// if (StrUtil.isBlank(fetchUrl)){
|
|
// if (StrUtil.isBlank(fetchUrl)){
|