gpt4 book ai didi

java - xml 中的句点符号导致问题

转载 作者:行者123 更新时间:2023-12-01 11:44:37 25 4
gpt4 key购买 nike

我有一个如下所示的 xml:

<expectedJson>
{
"x":"give him $12&#46;25"
}
</expectedJson>

我正在做的是:将嵌入的 json 与实际的 json 进行比较。但是解析这个xml后,&#46;正在转换为 . 即句点。

我希望它被解释为 &#46;不像. 。有人可以帮忙吗?

最佳答案

需要对 & 进行转义,以避免将其视为实体的开头。 See this to escape the ampersand .

<expectedJson>
{
"x":"give him $12&#038;#46;25"
}
</expectedJson>

<expectedJson>
{
"x":"give him $12&amp;#46;25"
}
</expectedJson>

关于java - xml 中的句点符号导致问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29260990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com