文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-18 09:31:10 +08:00
parent f8ddcdc718
commit 01e63f68c2

View File

@ -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, "_");
}