I have a configuration file may or may not contain a certain element whose XPath is:
/configuration/server/address
when I write the configuration I have to create the node if it doesn't exist.
Node n = (Node)xp.evaluate("/configuration/server/address", configDocument, XPathConstants.NODE);
but, no surprise, node is null if the node doesn't exist in the real file.
QUESTION
Ok. My idea is have something like File: i can define a path that doesn't exist:
File f = new File("myInexistentDir/myInexistentSubdir");
then, i call f.mkdirs() and the path is replicated in the real world. Is it possible with java implementation of XPath?
Possible objection. It's obvious that not all XPath expressions are "creatable nodes".
Where create the "//anywhere" element?
I would say that "//anywhere" expression doesn't is a "path" in a strict sense, it's more similar to a query.