Я пытаюсь создать простой XML с Java и org.w3c.dom, но я застрял, когда пытаюсь добавить ребенка к ребенку, что-то вроде этого:
<root>
<child>
<childOfTheChild>Some text</childOfTheChild>
</child>
</root>
Я попробовал несколько вариантов этого (например, сначала добавление дочернего элемента, а затем создание childOfTheChild и т. Д.):
Element root = doc.getDocumentElement();
Element child = doc.createElement("child");
Element childOfTheChild = doc.createElement("childOfTheChild ");
Text st = doc.createTextNode("Some text");
childOfTheChild.appendChild(st);
child.appendChild(childOfTheChild );
root.appendChild(child);
И я всегда получаю один и тот же результат:
<root>
<child>null</child>
</root>
Есть ли проблема в этом коде или это может быть что-то еще?
Изменить:
Функция печати работает нормально с некоторыми тестовыми XML, иначе ...
Итак, функция без некоторых корректировок красоты:
//Call System.out.println( print(dokument.getFirstChild()) );
private String print(Node node) {
String txt = ""; //xml string presentation
//Get the primary node name and any existing attributes, like <myNode att1='some val'>
if (node.getNodeType() == node.ELEMENT_NODE)
{
//The name
txt += "<" + node.getNodeName();
//Insert the attributes
if (node.hasAttributes())
{
NamedNodeMap atts = node.getAttributes();
for (int i = 0; i < atts.getLength(); i++) {
Node atts = atts.item(i);
txt += " " + atts.getNodeName() + " = '" + atts.getNodeValue() + "'";
}
}
txt += ">\n";
}
int nChilds = -1;
//Get any existing child nodes, so the <root><child1></child1></root>
if (node.hasChildNodes())
{
NodeList childs = node.getChildNodes();
nChilds = childs.getLength();
if (nChilds == 1)
{
txt += childs.item(0).getNodeValue();
}
else
{
for (int j = 0; j < nChilds; j++) {
txt += print(childs.item(j));
}
}
}
//And the ending of the primary node, like </root>
if (node.getNodeType() == node.ELEMENT_NODE)
{
txt += "</" + node.getNodeName();
txt += ">\n";
}
return txt;
}