I have the following XML, and I cannot access the tag <description>
.
https://i.stack.imgur.com/Ck6mq.jpg
A simpler XML I can read well, but this I cannot.
Parsing code follows:
xmlFile = new File(route);
documentFactory = DocumentBuilderFactory.newInstance();
documentBuilder = documentFactory.newDocumentBuilder();
doc = documentBuilder.parse(xmlFile);
doc.getDocumentElement().normalize();