From c89db5a544fc45a8d9c234a965cb6b1930ef4d2e Mon Sep 17 00:00:00 2001 From: chengqf <584883665@139.com> Date: Thu, 13 Apr 2023 15:48:26 +0800 Subject: [PATCH] updateTime --- .../idc/service/impl/IdcServiceImpl.java | 39 ++++++++++--------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/IdcServiceImpl.java b/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/IdcServiceImpl.java index f4eed66..a6ecc5e 100644 --- a/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/IdcServiceImpl.java +++ b/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/IdcServiceImpl.java @@ -255,7 +255,7 @@ public class IdcServiceImpl implements IdcService { try { String[] tnames = t.split("/"); - String lastUpdateTime = getUpdateTime(tnames[2] + "." + tnames[0]); + String lastUpdateTime = getUpdateTime(tnames[2] + "." + tnames[0]+"."+tnames[1]); Date nowUpdateTime = new Date(); // if (!StringUtils.isEmpty(tnames[0])) { @@ -301,7 +301,7 @@ public class IdcServiceImpl implements IdcService { if (sync) { result = syncMasterData(map, isUpload, syncIp); if (result) { - setUpdateTime(tnames[2] + "." + tnames[0], DateUtil.formatDate(nowUpdateTime, "yyyy-MM-dd HH:mm:ss")); + setUpdateTime(tnames[2] + "." + tnames[0]+"."+tnames[1], DateUtil.formatDate(nowUpdateTime, "yyyy-MM-dd HH:mm:ss")); } } //} @@ -1016,23 +1016,24 @@ public class IdcServiceImpl implements IdcService { if (MediaType.parse("application/force-download").equals(result.body().contentType())) { try (InputStream inputStream = result.body().byteStream()) { - String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : "/"; - - FileOutputStream outputStream = new FileOutputStream(filePath + filePathSlash + fileName); - - byte b[] = new byte[1024]; - - int len = 0; - - while ((len = inputStream.read(b)) != -1) { - - outputStream.write(b, 0, len); - - } - - outputStream.flush(); - outputStream.close(); - + + String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : "/"; + + FileOutputStream outputStream = new FileOutputStream(filePath + filePathSlash + fileName); + + byte b[] = new byte[1024]; + + int len = 0; + + while ((len = inputStream.read(b)) != -1) { + + outputStream.write(b, 0, len); + + } + + outputStream.flush(); + outputStream.close(); + } catch (Exception e) {