OA附件读取定时任务优化

This commit is contained in:
yuxueliang0813 2025-03-19 16:41:45 +08:00
parent 1f79b84dc3
commit 896f4a3230
2 changed files with 18 additions and 8 deletions

View File

@ -132,7 +132,7 @@ public class DobeContractAttachmentTask extends AbstractTask implements Plugin {
DobeDWUtils.saveLog(contractno,"NAS附件",nasPath,e.getMessage(),false,"NAS上传文件至星瀚");
}
}else{
logger.info(contractno+" OA附件接口返回路径为空fj_oaid"+ fj_oaid);
logger.info(contractno+" OA附件接口返回路径nasPath为空fj_oaid"+ fj_oaid);
}
}
}

View File

@ -124,8 +124,7 @@ public class AttachmentFileUtil {
*/
public static boolean saveDirFile2Attchment(String appId, String entity, Object pk, String dirpath, String attachKey, JSONArray filenames) throws IOException {
logger.info("传入的文件夹路径"+dirpath);
logger.info("传入的文件名称集合"+filenames);
List<Map<String, Object>> attachments = new ArrayList<>(filenames.size());
List<Map<String, Object>> attachments = new ArrayList<>(1);
Map<String, Object> attachItem;
String fileName;
JSONObject destFile;
@ -133,29 +132,40 @@ public class AttachmentFileUtil {
String actUrl;//星瀚正式文件url
//获取临时文件缓存
TempFileCache cache = CacheFactory.getCommonCacheFactory().getTempFileCache();
InputStream inputs;
FileService service = FileServiceFactory.getAttachmentFileService();
//遍历目标目录得到所有文件
for (int i = 0; i < filenames.size(); i++) {
destFile = filenames.getJSONObject(i);
attachments.clear();
fileName = destFile.getString("fileName");//文件名称可能涉及字符集转义需要注意
attachItem = new HashMap<>();
//附件编号 如果不设置在前台删除某一个文件时会把所有编号为空的都删掉
attachItem.put("uid", "nas"+System.currentTimeMillis());
//文件名称
attachItem.put("name", fileName);
logger.info("文件名称"+fileName);
// service = FileServiceFactory.getAttachmentFileService();
inputs = service.getInputStream(dirpath+"/"+fileName);
// inputs = service.getInputStream("E:\\dobews\\dobe_cosmic6\\replay_pid13348.log");
//文件大小
attachItem.put("size", 1);
attachItem.put("size", ""+inputs.available());
logger.info("文件大小"+inputs.available());
// cache = CacheFactory.getCommonCacheFactory().getTempFileCache();
//将文件流存入临时文件缓存拷贝完成最后一个参数为缓存有效期600秒
tempUrl = cache.saveAsUrl(fileName, service.getInputStream(dirpath+"/"+fileName), 900);
tempUrl = cache.saveAsUrl(fileName, inputs, 600);
//修改时间
attachItem.put("lastModified",System.currentTimeMillis());
logger.info("文件临时路径"+tempUrl);
//将文件缓存中的附件文件上传到正式文件服务器
actUrl = AttachmentServiceHelper.saveTempToFileService(tempUrl,appId,entity,pk,fileName);
logger.info("文件正式路径"+actUrl);
//将新文件的物理路径存入map
attachItem.put("url", actUrl);
attachments.add(attachItem);
//维护单据和附件的关系非文件上传
AttachmentServiceHelper.upload(entity, pk, attachKey, attachments);
}
//维护单据和附件的关系非文件上传
AttachmentServiceHelper.upload(entity, pk, attachKey, attachments);
return true;
}