写文件调整

master
wj 2 years ago
parent a991a57203
commit 274a231c90

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

Loading…
Cancel
Save