Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Java 6. Given a org.w3c.dom.Node, how do change the contents of one of its child elements (or potentially the node itself), given an xpath String expression representing one of those elements? Note by "contents", I'm always referring to text. If the child element represented by the path expression contained other child elements, those should go away and replaced with the text I want to substitute.

Thanks, - Dave

share|improve this question

1 Answer

First, you find the element that the XPath expression points to (using the simple XPathAPI)

// `node` is your node
// `xpathExpr` is a String with the XPath expression
// `elem` is is element pointed by the XPath expression

Node elem = XPathAPI.selectSingleNode(node, xpathExpr);

then you use Node#setTextContent (javadoc):

On setting, any possible children this node may have are removed and, if it the new string is not empty or null, replaced by a single Text node containing the string this attribute is set to.

elem.setTextContent("This is the new content. Old content, go away!");
share|improve this answer
The question is more about how I would find the part of the node to set using an xpath expression. What is given is a org.w3c.dom.Node object and applying the xpath expression to that. – Dave Oct 13 '11 at 13:10
I edited the answer: new, you first find the element you care about, then you set its text content. – gioele Oct 15 '11 at 10:28

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.