用于 C++ 的 SAX Api从 XML 文件中读取元素名称和值?

发布于 2024-11-29 00:51:28 字数 57 浏览 1 评论 0原文

谁能告诉我如何使用 Xerces-C++ v2.8.0 中的 SAX API 获取标签名称和标签值?

Can anyone tell me how can I get a tag name and tag value using the SAX API in Xerces-C++ v2.8.0?

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

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

发布评论

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

评论(1

幽梦紫曦~ 2024-12-06 00:51:29

SAX 的工作原理是解析文件并向您发送事件,以回调您提供的方法的形式。 XML 文件中可能发生的每个重要对象都有“事件”,例如开始标记、字符、结束标记等。由您来跟踪您所在的位置并确定哪个事件是对你有意义。

您可以通过子类化 org.xml.sax.helpers.DefaultHandler 并覆盖感兴趣事件的方法来提供回调。例如,您可以为 XML 中的每个标记调用 startElement()。您查看每个标记,如果您感兴趣,则可以检查其属性,这些属性作为参数提供给 startElement() 方法。

SAX works by parsing the file and sending you events, in the form of callbacks to methods you provide. There are "events" for each significant object that can occur in an XML file, such as start-tag, characters, end-tag, etc. It is up to you to keep track of where you are and determine which of the events is meaningful to you.

You provide the callbacks by subclassing org.xml.sax.helpers.DefaultHandler and overriding the methods for the events of interest. So, for example, you get a call to startElement() for every tag in the XML. You look at each tag, and if it's of interest then you can examine its attributes, which were provided as a parameter to the startElement() method.

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