在编组时包括 CDATA 包装器

发布于 2024-11-19 09:19:39 字数 513 浏览 4 评论 0原文

我正在使用 XMLBeans 生成 xml 。 有没有办法在输出 xml 文档中自动包含所需元素的 CDATA Wrapper。 例如,我的输出 xml 应该如下所示:

<employee>
<name><![CDATA[NAME]]></name>
<address><![CDATA[ADDRESS]]></address>
</employee>

1) 我们可以以这样的方式编写 XSD 吗?每当我使用 XMLBeans 在程序中设置 元素的值时,输出 xml 应该包含这样的名称元素: 而不是NAME

2) XMLBeans 中有没有办法为特定元素生成 CDATA Wrapper。

任何帮助将不胜感激。

I am generating xml using XMLBeans .
Is there a way to include CDATA Wrapper automatically for required elements in the output xml document .
For example , my output xml should look like this :

<employee>
<name><![CDATA[NAME]]></name>
<address><![CDATA[ADDRESS]]></address>
</employee>

1) Can we write XSD in such a way , that whenever i set value for <name> element in my program using XMLBeans , the output xml should contain name element like this : <name><![CDATA[NAME]]></name> instead of <name>NAME</name>

2) Is there a way in XMLBeans to produce CDATA Wrapper for specific elements .

Any Help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千柳 2024-11-26 09:19:39

请参阅此帖子。简而言之:

node.setFoo("ABCDE12345"); 
XmlCursor c = node.xgetFoo().newCursor(); 
c.toFirstContentToken(); 
c.setBookmark(CDataBookmark.CDATA_BOOKMARK);

然后,当您“保存”文档时,请务必传入 XmlOptions,例如:

XmlOptions opts = new XmlOptions().setUseCDataBookmarks(); 
node.xmlText(opts);

See this thread. In short:

node.setFoo("ABCDE12345"); 
XmlCursor c = node.xgetFoo().newCursor(); 
c.toFirstContentToken(); 
c.setBookmark(CDataBookmark.CDATA_BOOKMARK);

And then when you go to "save" the document be sure to pass in an XmlOptions like:

XmlOptions opts = new XmlOptions().setUseCDataBookmarks(); 
node.xmlText(opts);
待"谢繁草 2024-11-26 09:19:39

只是阅读文档 - 我不是 XMLBeans 用户。如果有经验的人写得不同 - 相信他们,而不是我。

请参阅 CDataBookmarkXmlOptions.setCDATAEntityCountThreshold、setUseCDataBookmarks、setSaveCDataLengthThreshold。

关于如何在文本中设置 CDataBookmark 的文档尚不清楚。请参阅来自 Nabble 的这段内容

Just reading docs - I'm not an XMLBeans user. If someone with experience writes differently - trust them, not me.

See CDataBookmark and XmlOptions.setCDATAEntityCountThreshold,setUseCDataBookmarks,setSaveCDataLengthThreshold.

The docs on how you set a CDataBookmark in the text aren't clear. See this bit from Nabble.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文