如何使用 TinyXml 在每个单独的行上打印属性

发布于 2024-12-12 10:10:23 字数 349 浏览 1 评论 0原文

我正在使用 TinyXML 在 C++ 中创建 XML 文档。

我希望在输出文档中每行看到 1 个属性,如下所示:

<root a="1"
      b="2"
      c="3" />

而不是 TinyXML 默认打印的内容:

<root a="1", b="2", c="3" />

不幸的是,我还没有找到任何可以让我执行此操作的 API 方法。

在不更改TinyXML代码的情况下,TinyXML是否提供了一种自定义打印的方法,以便我可以每行看到1个属性?

谢谢!

I'm using TinyXML for creating XML documents in C++.

I would like to see 1 attribute per line in the output documents, like this:

<root a="1"
      b="2"
      c="3" />

instead of what TinyXML prints by default:

<root a="1", b="2", c="3" />

Unfortunately, I haven't found any API method that can let me do this.

Without changing the code of TinyXML, is there a way that TinyXML provides to customize the printing so I can see 1 attribute per line?

Thanks!

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

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

发布评论

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

评论(1

何其悲哀 2024-12-19 10:10:23

默认情况下没有办法做到这一点;您可以子类化 TiXmlPrinter 来创建该行为:

http://www.grinninglizard.com/tinyxmldocs/ classTiXmlPrinter.html

There is no way to do this by default; you can sub-class TiXmlPrinter to create that behavior:

http://www.grinninglizard.com/tinyxmldocs/classTiXmlPrinter.html

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