打印出Xpath节点

时间:2015-03-31 07:19:12

标签: java xpath

在下面的代码中,我试图读取父类别,属于它们的类别以及它们是否包含子类别。

 public static void getcategories() throws Exception
{       
    XPathContext xpath = new XPathContext(new FileReader("//categorylistEN.xml"));

    NodeList categories = xpath.getXPathNodes("//CategoriesList/Category");
    NodeList scategories = xpath.getXPathNodes("//CategoriesList/Category/SubCategories/SubCategory");
    NodeList pcategories = xpath.getXPathNodes("//CategoriesList/Category/ParentCategory");

    for(int i =  0; i < pcategories.getLength(); i++)try
    {
        HashMap<String, String> pcats = new HashMap();

        Node n = pcategories.item(i);
        String pid = "  ("+n.getAttributes().getNamedItem("ID").getNodeValue()+")";
        String pname = n.getFirstChild().getNextSibling().getTextContent().replaceAll("\n", "").trim() +"  ";
        pcats.put(pname,pid);
        System.out.println(pcats);

        Node cats = categories.item(i);
        String catid = cats.getAttributes().getNamedItem("ID").getNodeValue();
        NodeList catn = cats.getChildNodes();
        Node name = catn.item(5);
        String catname = name.getAttributes().getNamedItem("Value").getNodeValue();
        System.out.println(pcats +" - "+ catname + "  =  (" +catid+")");

        Node scat = scategories.item(i);
        String sid = scat.getAttributes().getNamedItem("ID").getNodeValue();
        System.out.println(pcats +" - "+ catname + "  =  (" +catid+")" + "  =  (" +sid+")");
    }
    catch (Exception e)
    {
        System.out.println("NoID" );
    }
}

它应该按以下格式读出:

    ParentCategory =(ID) 
    ParentCategory =(ID)    Category =(ID)
    ParentCategory =(ID) 
    ParentCategory =(ID)    Category =(ID)
    ParentCategory =(ID)    Category =(ID)    SubCategory =(ID)
    ParentCategory =(ID) 
    ParentCategory =(ID)    Category =(ID)
    ParentCategory =(ID) 
    ParentCategory =(ID)    Category =(ID)

父类别和类别工作正常,但并非都包含子类别。如何检查子类别并将其打印在包含它的类别旁边?我尝试了一些循环成功获取文件中的子类别ID,但它会在列出的每个类别上打印出来,即使它们不包含子类别。

非常感谢任何帮助。干杯

1 个答案:

答案 0 :(得分:1)

对不起,我没有意识到我必须接受一个答案来结束这个问题。 这是一个不正确读取xml的情况。每个父类别都有一个由其子类别引用的ID。所以我只检查了包含ID值为pid(parentID)的类别,并将其与父母一起打印出来。