Commit a7b62d30 by 朱亚洁

feat:[1004435] 编辑运营优化需求

parent 4428f26d
...@@ -1126,7 +1126,7 @@ public class FileUtils { ...@@ -1126,7 +1126,7 @@ public class FileUtils {
/** /**
* 格式化文件名称,过滤特殊字符(名称太长进行截断) * 格式化文件名称,过滤特殊字符(名称太长进行截断)
* 针对压缩包内文件名称, 支持. * 针对压缩包内文件名称, 支持.()
* @param fileName * @param fileName
*/ */
public static String formatName4Zip(String fileName) { public static String formatName4Zip(String fileName) {
...@@ -1134,7 +1134,7 @@ public class FileUtils { ...@@ -1134,7 +1134,7 @@ public class FileUtils {
return null; return null;
} }
try { try {
String regEx = "[*/\\\\:?\"<|>\\s+%#&=()]"; String regEx = "[*/\\\\:?\"<|>\\s+%#&=]";
Pattern p = Pattern.compile(regEx); Pattern p = Pattern.compile(regEx);
Matcher m = p.matcher(fileName); Matcher m = p.matcher(fileName);
String result = m.replaceAll("").trim(); String result = m.replaceAll("").trim();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment