标签:
Document document = DocumentHelper.createDocument(); document.setXMLEncoding(ChARSET_UTF_8); Element root = document.addElement("message"); Element head = root.addElement("head"); head.addElement("field").addAttribute("name"," ").setText(""); Element body = root.addElement("body"); body.addElement("field").addAttribute("name","").setText(""); return document.asXML();
一般用于封装消息 发送XML通知等。
标签:
原文地址:http://www.cnblogs.com/yangsy0915/p/5411757.html