Commit f1c9bc81 by 田超

Merge branch 'feature/1004435' into 'master'

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

See merge request rays/pcloud-common-parent!186
parents 4428f26d a7b62d30
...@@ -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