commit
f593b0cf24
|
@ -104,7 +104,9 @@ public class KkFileUtils {
|
||||||
public static String htmlEscape(String input) {
|
public static String htmlEscape(String input) {
|
||||||
if(StringUtils.hasText(input)){
|
if(StringUtils.hasText(input)){
|
||||||
//input = input.replaceAll("\\{", "%7B").replaceAll("}", "%7D").replaceAll("\\\\", "%5C");
|
//input = input.replaceAll("\\{", "%7B").replaceAll("}", "%7D").replaceAll("\\\\", "%5C");
|
||||||
return HtmlUtils.htmlEscape(input, "UTF-8");
|
String htmlStr = HtmlUtils.htmlEscape(input, "UTF-8");
|
||||||
|
//& -> &
|
||||||
|
return htmlStr.replace("&", "&");
|
||||||
}
|
}
|
||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue