文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-18 09:36:51 +08:00
parent 020cce9133
commit 1eee8ead1c

View File

@ -56,14 +56,12 @@ public class RegexUtils {
}
public static String encodeUrl(String input) {
String regex = "[\\s\\+\\?\\#\\&\\=\\/:\\(\\)\\!]";
return input.replaceAll(regex, "_");
}
/**
* 将除了点号以外的所有特殊字符替换都为下划线
* @param input
* @return
*/
public static String encodeUrl(String input) { return input.replaceAll("[^\\w.]", "_"); }