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 (transcoder != null) {
newMetadata = transcoder.convertStreamMetadata(metadata, null);
}
try {
// Write the output
if (newMetadata != null) {
writer.replaceStreamMetadata(newMetadata);
}
writer.write(bi);
} catch (IOException e)
{
throw new IOException("Problem writing to " + geoPNGSetArray[iter].getGeoPNG().getAbsolutePath(), e);
}
// Store the appropriate metadata
Node metaDataTree = metadata.getAsTree(metadata.getNativeMetadataFormatName());
I just recently learned how to use JDOM and was hoping to use this, but I haven't been able to convert the Node into JDOM format. I found this page that helped me a little, but didn't quite get me there. Using that page, I wrote code that looks like this:
org.w3c.dom.Document domDocument = metaDataTree.getOwnerDocument();
Document doc = new DOMBuilder().build(domDocument);
geoPNGSetArray[iter].getGeoPNGCoord().readMetaDataTreeAsJDOM(doc);
but the build() method was returning a null result. Then, I tried to modify it to look like this:
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
org.w3c.dom.Document domDocument = null;
try {domDocument = factory.newDocumentBuilder().newDocument();}
catch (ParserConfigurationException ex)
{
Logger.getLogger(GeoPNGSetDesktop.class.getName()).log(Level.SEVERE, null, ex);
}
domDocument.adoptNode(metaDataTree);
Document doc = new DOMBuilder().build(domDocument);
geoPNGSetArray[iter].getGeoPNGCoord().readMetaDataTreeAsJDOM(doc);
but the adoptNode() method seemed to give me an empty document. I really hope there's an easy solution to this. If not, I'll just have to learn DOM and rewrite my code to use it.