Merge pull request #3837 from ZhenhengXie/v5-dev

fix: 修复Xml转义相关问题
This commit is contained in:
Golden Looly 2025-01-09 19:22:36 +08:00 committed by GitHub
commit 50df86d846
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 6 deletions

View File

@ -22,7 +22,7 @@ public class XmlEscape extends ReplacerChain {
private static final long serialVersionUID = 1L;
protected static final String[][] BASIC_ESCAPE = { //
// {"'", "'"}, // " - single-quote
{"'", "'"}, // " - single-quote
{"\"", """}, // " - double-quote
{"&", "&"}, // & - ampersand
{"<", "&lt;"}, // < - less-than

View File

@ -13,8 +13,6 @@ public class XmlUnescape extends ReplacerChain {
private static final long serialVersionUID = 1L;
protected static final String[][] BASIC_UNESCAPE = InternalEscapeUtil.invert(XmlEscape.BASIC_ESCAPE);
// issue#1118
protected static final String[][] OTHER_UNESCAPE = new String[][]{new String[]{"&apos;", "'"}};
/**
* 构造
@ -22,6 +20,5 @@ public class XmlUnescape extends ReplacerChain {
public XmlUnescape() {
addChain(new LookupReplacer(BASIC_UNESCAPE));
addChain(new NumericEntityUnescaper());
addChain(new LookupReplacer(OTHER_UNESCAPE));
}
}

View File

@ -956,6 +956,7 @@ public class XmlUtil {
* &lt; (小于) 替换为 &amp;lt;
* &gt; (大于) 替换为 &amp;gt;
* &quot; (双引号) 替换为 &amp;quot;
* &apos; (单引号) 替换为 &amp;apos;
* </pre>
*
* @param string 被替换的字符串
@ -963,7 +964,7 @@ public class XmlUtil {
* @since 4.0.8
*/
public static String escape(String string) {
return EscapeUtil.escapeHtml4(string);
return EscapeUtil.escapeXml(string);
}
/**
@ -975,7 +976,7 @@ public class XmlUtil {
* @since 5.0.6
*/
public static String unescape(String string) {
return EscapeUtil.unescapeHtml4(string);
return EscapeUtil.unescapeXml(string);
}
/**

View File

@ -320,6 +320,7 @@ public class XmlUtilTest {
final String a = "<>";
final String escape = XmlUtil.escape(a);
Console.log(escape);
Console.log(XmlUtil.escape("中文“双引号”"));
}
@Test