-2

在过去的两天里,我一直坚持这项任务,并且通过不同的文章没有得到任何明确的解决方案。所以请给我一步一步的代码来检索 XML 中存在的 XPath 值。

我的 XML 是

<bookstore>
  <book>
    <int name="sno">1</int>
    <str name="author">J K. Rowling</str>
    <int name="price">29.99</int>
    <str name="subauthor">J K</str>
  </book>
   <book>
    <int name="sno">2</int>
    <str name="author">J K. Rowling</str>
    <int name="price">29.99</int>
    <str name="subauthor">hamilton</str>
  </book>
</bookstore>

在这个 XML 中,我需要每个作者、价格和副作者值。我的预期结果是:

(author-J K. Rowling,price-29.99,subauthor-j k)

然后如何从这个 XML 中获取 subauthor 的最后一个值。

我获取此值的 java 代码不起作用。它仅引发异常。

public gettheXMLvalues() {
  try {
    NodeList nodeLst1 = doc.getElementsByTagName("doc");
    for (int i = 0; i < nodeLst1.getLength(); i++) {
      Node node = nodeLst1.item(i);
      if (node.getNodeType() == Node.ELEMENT_NODE) {
        Element element = (Element) node;
        NodeList nodes = element.getElementsByTagName("//str[@name='author']").item(0).getChildNodes();
        node = (Node) nodes.item(0);
        System.out.println("ELEMETS " + element.getTextContent());
        System.out.println("Author" + node.getNodeValue());
      }
  } catch(Exception e){
    system.out.println("Exception  "+e);
  }
}

请给我一个解决方案来获取每本书的作者、价格和子作者的价值。我尝试了很多方法来获得结果,但不幸的是我没有得到结果。请给我明确的解决方案。

4

1 回答 1

0

public static ArrayList gettheXMLvalues(Document xmlDocument, String author) throws Exception {

    ArrayList<String> result = new ArrayList<String>();

    List<Element> elementList = xmlDocument.selectNodes("//str[@name='author']");

    if (elementList == null) {
        return result;
    }

    ArrayList<Element> listAuthor = new ArrayList<Element>();

    for (int i = 0; i < elementList.size(); i++) {
        Element el = elementList.get(i);
        if (el.getText().equalsIgnoreCase(author)) {
            listAuthor.add(el);
        }
    }

    if (listAuthor.size() == 0) {
        return result;
    }
    else {
        String authorLine = "";

        for (int i = 0; i < listAuthor.size(); i++) {

            Element element = listAuthor.get(i);

            Element price = (Element)element.getParent().selectSingleNode("./int[@name='price']");
            Element subauthor = (Element) element.getParent().selectSingleNode("./str[@name='subauthor']");

            authorLine = "author-" + author + ",price-" + price.getText() + ",subauthor-" + subauthor.getText();

            result.add(authorLine);
        }
    }

    return result;
}
于 2013-06-05T15:07:18.927 回答