文件上传https
This commit is contained in:
parent
020cce9133
commit
1eee8ead1c
|
@ -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.]", "_"); }
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user