文件下载调整

rabbit_dev
wj 2 years ago
parent 9aff311936
commit 26a0717f20

@ -245,8 +245,7 @@ public class IdcServiceImpl implements IdcService {
/*上传失败重新上传*/ /*上传失败重新上传*/
private void asyncFailTask(String host) { private void asyncFailTask(String host) {
try try {
{
String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : "/"; String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : "/";
String sql = "select * from basic_export_status where status='1' and receiveStatus='0' where updateTime<date_sub(now(),interval 6 minute) order by updateTime"; String sql = "select * from basic_export_status where status='1' and receiveStatus='0' where updateTime<date_sub(now(),interval 6 minute) order by updateTime";
Map<String, Object> map = new HashMap<String, Object>(); Map<String, Object> map = new HashMap<String, Object>();
@ -630,7 +629,8 @@ public class IdcServiceImpl implements IdcService {
public void downloadFile(String fileName, HttpServletResponse response) { public void downloadFile(String fileName, HttpServletResponse response) {
OutputStream os; OutputStream os;
String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : fileName.substring(0, 1).equals("/") ? "" : "/"; String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : fileName.substring(0, 1).equals("/") ? "" : "/";
String sourceFileName = filePath + filePathSlash + imagePath + fileName; // String sourceFileName = filePath + filePathSlash + imagePath + fileName;
String sourceFileName = fileName;
try { try {
if (FileUtils.isFileExist(sourceFileName)) { if (FileUtils.isFileExist(sourceFileName)) {
byte[] bytes = FileUtils.readFileByBytes(sourceFileName); byte[] bytes = FileUtils.readFileByBytes(sourceFileName);
@ -1187,7 +1187,7 @@ public class IdcServiceImpl implements IdcService {
if (result != null && result.isSuccessful() && MediaType.parse("application/force-download").equals(result.body().contentType())) { if (result != null && result.isSuccessful() && MediaType.parse("application/force-download").equals(result.body().contentType())) {
try (InputStream inputStream = result.body().byteStream()) { try (InputStream inputStream = result.body().byteStream()) {
fileName = fileName.substring(fileName.lastIndexOf('/') + 1);
FileOutputStream outputStream = new FileOutputStream(filePath + filePathSlash + imagePath + fileName); FileOutputStream outputStream = new FileOutputStream(filePath + filePathSlash + imagePath + fileName);
@ -1208,8 +1208,8 @@ public class IdcServiceImpl implements IdcService {
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
log.error("", e);
} }
} }
if (!(total > 0)) { if (!(total > 0)) {

Loading…
Cancel
Save