Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 a 传递<![cdata[something-html-formatted]]>给我将其解析为 html 电子邮件正文的 xml 文件。除了正确检索电子邮件正文外,一切正常。比如说,我有一个这样的字符串:
<![cdata[something-html-formatted]]>
<![CDATA[I need to write <b>this</b> text in <i>italic</i>]]>
我总是在这样的电子邮件中得到结果:
这个</b>斜体文本</i>]]>
如何将完整的字符串传递给 XML 文件?
提前致谢!
简单地编码它,就像你做其他事情一样,通过<替换<和:>>
<
<
>
>
<xml> <![CDATA[I need to write <b>this</b> text in <i>italic</i>]]> </xml>
工作正常。