Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting attribute value from node using dom4j

Tags:

java

dom4j

My XML is structured like the example below. I'm trying to get the attribute values out of XML using dom4j.

<baz>
  <foo>
    <bar a="1" b="2" c="3" />
    <bar a="4" b="5" c="6" />
  </foo>
</baz>

Currently the nodes are stored into a List with the following code:

public List<Foo> getFoo() {
  String FOO_XPATH = "//baz/foo/*";
  List<Foo> fooList = new ArrayList<Foo>();
  List<Node> fooNodes = _bazFile.selectNodes(FOO_XPATH);

  for (Node n : fooNodes) {
    String a = /* get attribute a */
    String b = /* get attribute b */
    String c = /* get attribute c */
    fooNodes.add(new Foo(a, b, c));
  }

  return fooNodes;
}

There is a similar but different question here on SO but that is returning a node's value for a known attribute key/value pair using the following code:

Node value = elem.selectSingleNode("val[@a='1']/text()");

In my case, the code knows the keys but doesn't know the values - that's what I need to store. (The above snippet from the similar question/answer also returns a node's text value when I need the attribute value.)

like image 942
anjunatl Avatar asked Sep 12 '12 14:09

anjunatl


1 Answers

You can also use xpath to get the value of a node attribute -

  for (Node n : fooNodes) {
    String a = n.valueOf("@a");
    String b = n.valueOf("@b");
    String c = n.valueOf("@c");
    fooNodes.add(new Foo(a, b, c));
  }
like image 70
Jay Shark Avatar answered Sep 25 '22 14:09

Jay Shark