如何在Java中创建Document对象?

时间:2011-10-03 14:27:28

标签: java xml jdom

我想用jdom创建一个Document对象。我已经编写了一个函数,但在调试后我可以看到它没有被创建。因为我不熟悉XML,所以我不明白为什么我不能创建。你可以帮我吗?

public Document createSNMPMessage (){

    Element root = new Element("message");
    Document document = new Document(root);

    Element header = new Element("header");

    Element messageType = new Element("messageType").setText("snmp");
    Element sendFrom = new Element("sendFrom").setText("192.168.0.16");
    Element hostName = new Element("hostName").setText("oghmasysMehmet");
    Element sendTo = new Element("sendTo").setText("192.168.0.12");
    Element receiverName = new Element("receiverName").setText("Mehmet");
    Element date = new Element("date").setText("03/10/2011");

    header.addContent(messageType);
    header.addContent(sendFrom);
    header.addContent(hostName);
    header.addContent(sendTo);
    header.addContent(receiverName);
    header.addContent(date);

    Element body = new Element("body");

    Element snmpType = new Element("snmpType").setText("getbulk");
    Element ip = new Element("ip").setText("127.0.0.1");
    Element port = new Element("port").setText("161");
    Element oids = new Element("oids");
    Element oid = new Element("oid").setText("1.3.6.1.2.1.1.3.0");
    oids.addContent(oid);
    Element community = new Element("community").setText("community");
    Element nR = new Element("nR").setText("0");
    Element mR = new Element("mR").setText("5");

    body.addContent(snmpType);
    body.addContent(ip);
    body.addContent(port);
    body.addContent(oids);
    body.addContent(community);
    body.addContent(nR);
    body.addContent(mR);

    return document;

}

当我创建它时,我使用该函数将其转换为字符串;

    public String xmlToString(Document doc) {
    XMLOutputter outputter = new XMLOutputter(Format.getPrettyFormat());
    return outputter.outputString(doc);
}

当我尝试转换为字符串以查看Document内部的内容时,我得到了;

<?xml version="1.0" encoding="UTF-8"?>
<message />

1 个答案:

答案 0 :(得分:3)

从我所看到的,您正在创建一个Document对象,并将节点添加到headerbody节点,但这些节点未添加到您的Document对象实例{{1} }。

我相信您会希望将这些节点添加到document元素中,该元素已添加到root

因此,您可以将其添加到文档的根目录中,如下所示:

document