文件上传https
This commit is contained in:
parent
020cce9133
commit
1eee8ead1c
|
@ -56,14 +56,12 @@ public class RegexUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 将除了点号以外的所有特殊字符替换都为下划线
|
||||||
|
* @param input
|
||||||
|
* @return
|
||||||
public static String encodeUrl(String input) {
|
*/
|
||||||
String regex = "[\\s\\+\\?\\#\\&\\=\\/:\\(\\)\\!]";
|
public static String encodeUrl(String input) { return input.replaceAll("[^\\w.]", "_"); }
|
||||||
return input.replaceAll(regex, "_");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user