I have an XML org.w3c.dom.Node that looks like this:
<variable name="variableName">
<br /><strong>foo</strong> bar
</variable>
How do I get the <br /><strong>foo</strong> bar part as a String?
|
|
|
There is no simple method on org.w3c.dom.Node for this. getTextContent() gives the text of each child node concatenated together. getNodeValue() will give you the text of the current node if it is an Attribute, CDATA or Text node. So you would need to serialize the node using a combination of getChildNodes(), getNodeName() and getNodeValue() to build the string. You can also do it with one of the various XML serialization libraries that exist. There is XStream or even JAXB. This is discussed in http://stackoverflow.com/questions/35785/xml-serialization-in-java |
|||
|
|
|
Same problem. To solve it I wrote this helper function:
|
|||||||||
|
|
If you're using jOOX, you can wrap your node in a jquery-like syntax and just call
It uses an identity-transformer internally, like this:
|
|||
|
|
|
Once you've loaded the document into the DOM, there's no concept of "inner xml", only nodes of various types. You would have to re-serialize the subtree yourself to get a string. More generally, there's an abstraction called "document", which can have different representations. What we call "XML" is merely one possible concrete representation of the abstract document. The tree of nodes in a DOM representation is another, closer to the structure of the abstract document. |
||||
|
|
|
If you dont want to resort to external libraries, the following solution might come in handy. If you have a node "" and you want to extract the childre of the parent element proceed as follows:
|
|||
|
|