OA附件剔除png图片
This commit is contained in:
parent
18671c3ed6
commit
173a20d027
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue