写文件调整

master
wj 2 years ago
parent a991a57203
commit 274a231c90

@ -268,12 +268,15 @@ public class DlAllDataService {
} }
if (StrUtil.isNotBlank(bean.getTaskId())) { if (StrUtil.isNotBlank(bean.getTaskId())) {
// 将数据写入文件 // 将数据写入文件
try { // try {
this.writeFile(bean.getFilePath(), bean.getFileContent());
} catch (IOException e) { FileUtils.makeDirectory(filePath + "sync/");
log.error("从UDI自助平台拉取基础数据 文件[{}]写入异常----{}",bean.getFilePath(), e.getMessage()); String fileName = filePath + "sync/" + exportType.getRemark() + "-" + bean.getTaskId() + ".udi";
throw new RuntimeException(e); FileUtils.SaveFileAs(bean.getFileContent(), fileName);
} // } catch (IOException e) {
// log.error("从UDI自助平台拉取基础数据 文件[{}]写入异常----{}",bean.getFilePath(), e.getMessage());
// throw new RuntimeException(e);
// }
BasicExportStatusEntity exportStatusEntity = BasicExportStatusEntity.builder() BasicExportStatusEntity exportStatusEntity = BasicExportStatusEntity.builder()
.id(bean.getTaskId()) .id(bean.getTaskId())
@ -295,7 +298,7 @@ public class DlAllDataService {
} }
private void writeFile(String filePath, String content) throws IOException { private void writeFile(String filePath, String content) throws IOException {
String folder = filePath.substring(filePath.lastIndexOf('/')); String folder = filePath.substring(0,filePath.lastIndexOf('/')-1);
File file = new File(folder); File file = new File(folder);
if (!file.exists()) { if (!file.exists()) {
file.mkdirs(); file.mkdirs();

Loading…
Cancel
Save