XMLWriter() 替换空白字符串

发布于 2024-10-21 14:55:52 字数 134 浏览 1 评论 0原文

我正在使用 XMLWriter 创建 MySQL 数据库的 XML 输出,我想知道如何通过执行以下操作来防止发生这种情况 hello>nil

所以基本上用“nil”替换“”。

I am using XMLWriter to create an XML output of my MySQL Database, and I would like to know how I could prevent this happening <hello></hello> by doing this <hello>nil</hello>

So basically replace "" with "nil".

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

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

发布评论

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

评论(1

末が日狂欢 2024-10-28 14:55:52

适合在 XML 中指示空节点;另一种方式是。替换为nil意味着它不再是一个空节点;它是一个文本内容为 nil 的节点。

如果执行此替换,您将更改 XML 中数据的含义。这是一个糟糕的主意。

<hello></hello> is proper for indicating an empty node in XML; the other way is <hello />. Replacing with nil means it's no longer an empty node; it's a node with the text content nil.

If you do that replacement, you're changing the meaning of the data in the XML. This is a terrible idea.

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