Commit 9b877489 by huluobin

# update

parent 8f108a0c
...@@ -263,10 +263,7 @@ public class CostDomain implements Serializable { ...@@ -263,10 +263,7 @@ public class CostDomain implements Serializable {
if (null != filePath && filePath.contains("&")) { if (null != filePath && filePath.contains("&")) {
String fileName = filePath.substring(filePath.lastIndexOf("&") + 1); String fileName = filePath.substring(filePath.lastIndexOf("&") + 1);
// 去除中文 costDto.setFileName(fileName);
Pattern pat = Pattern.compile(REGEX_CHINESE);
Matcher mat = pat.matcher(fileName);
costDto.setFileName(mat.replaceAll(""));
} }
// 抵个税 // 抵个税
......
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