如何使用 TinyXml 在每个单独的行上打印属性
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下没有办法做到这一点;您可以子类化 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