OAI Jaxen XPath问题

时间:2011-05-31 19:15:10

标签: java xml xpath

我在使用Jaxen进行Xpath评估时遇到了很大问题。

这是我正在评估的XML的一部分:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd">
  <responseDate>2011-05-31T13:04:08+00:00</responseDate>
  <request metadataPrefix="oai_dc" verb="ListRecords">http://citeseerx.ist.psu.edu/oai2</request>
  <ListRecords>
    <record>
      <header>
        <identifier>oai:CiteSeerXPSU:10.1.1.1.1484</identifier>
        <datestamp>2009-05-24</datestamp>
      </header>
      <metadata>
        <oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
          <dc:title>Winner-Take-All..</dc:title>
          <dc:relation>10.1.1.134.6077</dc:relation>
          <dc:relation>10.1.1.65.2144</dc:relation>
          <dc:relation>10.1.1.54.7277</dc:relation>
          <dc:relation>10.1.1.48.5282</dc:relation>
        </oai_dc:dc>
      </metadata>
    </record>
    <resumptionToken>10.1.1.1.2041-1547151-500-oai_dc</resumptionToken>
  </ListRecords>
</OAI-PMH>

我正在使用Jaxen,因为在我的用例中它比Apache实现快得多。我正在使用W3C DOM进行XML表示。

我需要选择所有记录参数,然后在选定的节点上评估其他xpath(由于我的处理架构,它需要它)。

我正在选择所有记录节点(这可行):

/OAI-PMH/ListRecords/record

然后在每个选定的记录节点上,我正在评估其他xpath以获取所需的数据:

选择标识符文本值(这可行):

header/identifier/text()

选择标题文字值(这不起作用):

metadata/oai_dc:dc/dc:title/text()

我已经使用URI(oai_dc和dc)注册了名称空间前缀。我也尝试过其他xpath但没有一个工作:

metadata/dc/title/text()
metadata//dc:title/text()

我已经阅读了有关xpath,命名空间和解决方案的其他stackoverflow问题,以使用URI“http://www.openarchives.org/OAI/2.0/”添加前缀“oai”。我尝试将“oai:”前缀添加到没有定义前缀的节点,但结果我甚至没有选择记录节点。我有什么想法吗?

解决方案: 问题是关于解析器(感谢jasso)。它没有设置为名称空间感知 - 在更改设置后,一切正常,正如预期的那样。

1 个答案:

答案 0 :(得分:1)

我无法看到XPath表达式/OAI-PMH/ListRecords/record如何可能选择任何内容,因为您的文档没有{}OAI-PMH元素,只有{http://www.openarchives.org/OAI/2.0/}OAI-PMH元素。见http://jaxen.codehaus.org/faq.html