Я пытаюсь прочитать файл XML и сохранить значение между тегами как строку. Но для одного тега <picture url="https://cloudstor.aarnet.edu.au/plus/s/62e0uExNviPanZE/download"/>
мне нужно получить URL-адрес изображения и сохранить его, чтобы я мог использовать его в будущем.
Я использовал
File stocks = new File("gui.xml");
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
dbFactory.setIgnoringElementContentWhitespace(true);
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(stocks);
doc.getDocumentElement().normalize();
System.out.println("root of xml file" + doc.getDocumentElement().getNodeName());
NodeList nodes = doc.getElementsByTagName("billboard");
System.out.println("==========================");
Node node = nodes.item(0);
if (node.getNodeType() == Node.ELEMENT_NODE) {
Element element = (Element) node;
//message = getValue("message", element);
information = getValue("information", element).trim();
String picture = getValue("picture url=", element);
}
private static String getValue(String tag, Element element) {
NodeList nodes = element.getElementsByTagName(tag).item(0).getChildNodes();
Node node = (Node) nodes.item(0);
return node.getNodeValue();
}
Это сработает для получения информация из обычных тегов, например, информационный тег здесь. любая идея, как я могу заставить его работать для тега изображения.
<billboard class="nodarken">
<information>
Billboard with an information tag and nothing else. Note that the text is word-wrapped. The quick brown fox jumped over the lazy dogs.
</information>
<picture url="https://cloudstor.aarnet.edu.au/plus/s/62e0uExNviPanZE/download"/>
</billboard>