文件上传https
This commit is contained in:
parent
f8ddcdc718
commit
01e63f68c2
|
@ -2,9 +2,6 @@ package com.cultural.heritage.utils;
|
|||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import static com.cultural.heritage.constant.RegexConstant.*;
|
||||
|
||||
|
||||
|
@ -64,22 +61,8 @@ public class RegexUtils {
|
|||
|
||||
|
||||
public static String encodeUrl(String input) {
|
||||
Map<String, String> replaceMap = new HashMap<>();
|
||||
replaceMap.put(" ", "%20");
|
||||
replaceMap.put("\\+", "%2B");
|
||||
replaceMap.put("\\?", "%3F");
|
||||
replaceMap.put("#", "%23");
|
||||
replaceMap.put("&", "%26");
|
||||
replaceMap.put("/", "%2F");
|
||||
replaceMap.put(":", "%3A");
|
||||
replaceMap.put("\\(", "%28");
|
||||
replaceMap.put("\\)", "%29");
|
||||
replaceMap.put("!", "%21");
|
||||
|
||||
for (Map.Entry<String, String> entry : replaceMap.entrySet()) {
|
||||
input = input.replaceAll(entry.getKey(), entry.getValue());
|
||||
}
|
||||
return input;
|
||||
String regex = input.replaceAll("[^a-zA-Z0-9]", "_");
|
||||
return input.replaceAll(regex, "_");
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user