这是我的困境:
我有一个 XML,我想在其中插入 animation_sequence,但是,代码添加了带有左尖括号的 animation_sequnce/>,我可以添加除那个之外的所有其他元素。这是为什么?我尝试在此处添加 XML,但它不会呈现。这是我的代码:
Element state = testDoc.createElement("state");
state.setTextContent(element);
Element animationState = testDoc.createElement("animation_state");
Element sequence = testDoc.createElement("animation_sequence");
testDoc.getElementsByTagName("animations_list").item(0).appendChild(animationState).appendChild(state);
testDoc.getElementsByTagName("animation_state").item(testDoc.getElementsByTagName("state").getLength() - 1).appendChild(sequence);