Tagged Questions

4
votes
1answer
161 views

xpath 2.0 for java possible

Hallo, What package shall I use for XPath? I want wo query for elements and then extract some values around these nodes. Maybe one or more levels higher, some attributes. javax.xml.xpath is XPath ...
1
vote
2answers
2k views

Programmatically creating an XML Document using an XSD

I need to create XML documents using built-in java org.w3c.dom or jdom packages conforming to a set of XSD files. The XSD files are similar but not the same. In essence, I need to create the XML file ...
1
vote
3answers
841 views

Problems with XML/DOM tree rewriting using JDOM (ConcurrentModificationException)

I need to walk a JDOM tree and make changes as I go along; at this point, changes are mostly adding new elements right now but could also include reordering elements or removing elements. All work is ...
0
votes
0answers
8 views

How do I move from org.w3c.dom.Node to org.jdom.Document or org.jdom.Element?

I have an org.w3c.dom.Node, more specifically a javax.imageio.metadata.IIOMetadataNode, that I get from code that looks like this: // Transcode the metadata IIOMetadata newMetadata = null; if ...
0
votes
2answers
401 views

JDom working with XPath

I am a newbie to JDom, I try to use XPath to access my xml file. My code is like following: public static void main(String[] args) throws Exception { Document doc = new ...