Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have xml file with config for converter.

<converter>
  <replace>
    <mask from="171, 187, 147, 148" to="34"/>
    <mask from="150, 151" to="45"/>
  </replace>
</converter>

To read this config i'm using Apache Commons Configuration. How i can read tags "mask" to iterate it and process attributes in code?

share|improve this question

1 Answer

up vote 1 down vote accepted

My solution is to use xpath.

            XPath xpath = XPathFactory.newInstance().newXPath();
        XPathExpression fromAttribute = xpath.compile("@from");
        XPathExpression toAttribute = xpath.compile("@to");

        NodeList list = (NodeList) xpath.evaluate("/converter/replace/mask",
                    ((XMLConfiguration) configuration).getDocument(), XPathConstants.NODESET);

        for (int i = 0; i < list.getLength(); i++) {
            Node node = list.item(i);
            String from = fromAttribute.evaluate(node);
            String to = toAttribute.evaluate(node);

            //...
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.