我有以下XML文件:
<refObjects xsi:type="xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<id>123</id>
<tagfoo>Name 1</tagfoo>
</refObjects>
<refObjects xsi:type="xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<id>456</id>
<tagfoo>Name 2</tagfoo>
</refObjects>
<refObjects xsi:type="xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<id>789</id>
<tagfoo>Name 3</tagfoo>
</refObjects>
我想从“id”和“tagfoo”获取值。在我的eventtype START_TAG中,我可以读取标签,类型,值等的名称,但无法获取文本。在我的事件类型TEXT中,我无法读取此标记信息。我如何获得这些价值?