0
我想通過NodeList中的數據填充字符串向量(其值也是String),但它不起作用,並且Vector仍然爲空。 我在做什麼錯,如何解決?從NodeList填充向量
在此先感謝!
Document doc = parseFile(xml);
Vector <String> x = new Vector <>();
NodeList list = doc.getElementsByTagName("Stuff");
for (int i = 0; i < list.getLength(); i++) {
x.addElement(list.item(i).getFirstChild().getNodeValue());
}
public Document parseFile(File file) {
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
doc = (Document) builder.parse(file);
} catch (Exception e) { e.printStackTrace(); }
return doc;
}
您需要發佈更多的代碼 – emotionlessbananas
「節點列表清單」必須爲空 – alexbt
@Alex但我將如何fiil它從一個空的列表? –