Closed gxp3635 closed 5 years ago
/**
过滤文件名非法字符 / private static Pattern FilePattern = Pattern.compile("[\\/:?\"<>|]");
public static String filenameFilter(String str) { return str == null ? null : FilePattern.matcher(str).replaceAll(""); }
框架不会去做这些多余的操作,如果需要过滤的话,可以在IUpdateHttpService 中由使用者自行进行处理
/**
过滤文件名非法字符 / private static Pattern FilePattern = Pattern.compile("[\\/:?\"<>|]");
public static String filenameFilter(String str) { return str == null ? null : FilePattern.matcher(str).replaceAll(""); }