OA附件剔除png图片

This commit is contained in:
yuxueliang0813 2025-03-25 14:25:55 +08:00
parent 18671c3ed6
commit 173a20d027
1 changed files with 21 additions and 1 deletions

View File

@ -114,6 +114,23 @@ public class AttachmentFileUtil {
return true;
}
private static boolean isOAPng(String filename){
//如果附件名称中是png的文件并且文件名称是long类型的或者文件名称为空则返回true
if(DobeDWUtils.isEmpty(filename)){
return true;
}
int typeindex = filename.lastIndexOf(".png");
if(-1 == typeindex){
return false;
}
try {
Long.parseLong(filename.substring(0, typeindex)); // 尝试将字符串转换为long
return true; // 如果没有异常则转换成功
} catch (NumberFormatException e) {
return false; // 如果转换失败例如超出范围则返回false
}
}
/**将文件服务器上某个目录下的所有文件上传至星瀚对应单据附件上
* @param appId 目标单据所属应用标识
* @param entity 目标单据实体标识
@ -147,10 +164,13 @@ public class AttachmentFileUtil {
//遍历目标目录得到所有文件
for (int i = 0; i < filenames.size(); i++) {
destFile = filenames.getJSONObject(i);
fileName = destFile.getString("fileName");//文件名称可能涉及字符集转义需要注意
if(isOAPng(fileName)){
continue;
}
attachments.clear();
// service = FileServiceFactory.getAttachmentFileService();
// cache = CacheFactory.getCommonCacheFactory().getTempFileCache();
fileName = destFile.getString("fileName");//文件名称可能涉及字符集转义需要注意
attachItem = new HashMap<>();
//附件编号 如果不设置在前台删除某一个文件时会把所有编号为空的都删掉
attachItem.put("uid", "nas"+System.currentTimeMillis());