C++ 中用于面向流的 XML 解析的 expat 的替代方案;
C++ 中面向流的 XML 解析是否有 expat 的替代方案?我正在处理的数据通过 TCP 连接到达,并且有多个 XML 文档需要处理,这意味着每次有新文档时我都必须重置 XML 解析器。解析器不需要符合标准;我感兴趣的是能够使用面向回调的过程来解析 XML 语法,而不是遵守特定的架构。
Are there alternatives to expat for stream-oriented XML parsing in C++? The data that I am dealing with arrives over a TCP connection and there are multiple XML documents to deal with, which means I have to reset the XML parser every time there is a new document. The parser doesn't need to be standards-compliant; I'm interested in being able to parse the XML syntax using a callback-oriented process, rather than conforming to a particular schema.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Xerces-C++ 怎么样?
What about Xerces-C++?
您可以尝试 Apache 的 Xerces。
You could try Apache's Xerces.