我正在尝试使用Java和org.w3c.dom创建一些简单的XML,但是当我尝试将一个孩子附加到孩子身上时我陷入了困境,如下所示:
<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;
}
答案 0 :(得分:2)
适合我吗?:
import static org.junit.Assert.assertTrue;
import java.io.StringWriter;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.TransformerFactoryConfigurationError;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.junit.Test;
import org.w3c.dom.DOMImplementation;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Text;
public class DomTest {
@Test
public void testDom() throws Exception {
Document document = createEmptyDocument();
Element root = document.getDocumentElement();
Element child = document.createElement("child");
Element childOfTheChild = document.createElement("childOfTheChild");
Text st = document.createTextNode("Some text");
childOfTheChild.appendChild(st);
child.appendChild(childOfTheChild);
root.appendChild(child);
assertTrue(serialise(document).contains("Some text"));
}
private Document createEmptyDocument() throws ParserConfigurationException {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DOMImplementation domImpl = dbf.newDocumentBuilder()
.getDOMImplementation();
Document document = domImpl.createDocument(null, "root", null);
return document;
}
private String serialise(Document document)
throws TransformerFactoryConfigurationError,
TransformerConfigurationException, TransformerException {
TransformerFactory xff = TransformerFactory.newInstance();
Transformer xf = xff.newTransformer();
StringWriter sw = new StringWriter();
xf.transform(new DOMSource(document), new StreamResult(sw));
return sw.toString();
}
}