本帖最后由 郭强 于 2013-4-13 14:17 编辑
//使用字符串拼接的方式
String name = ...
String attribute = ...
String xml = "<root>" +"<name att=\""+ attribute +"\">"+ name +"</name>"+"</root>";
//使用JDom的方式
Element root = new Element("root");
root.setAttribute("att", attribute);
root.setText(name);
Document doc = new Documet();
doc.setRootElement(root);
XmlOutputter out = new XmlOutputter(Format.getPrettyFormat());
String xml = out.outputString(root); |
|