当前位置:   article > 正文

dom4j写xml_dom4j 写出xml 空

dom4j 写出xml 空

  从官网上找来的,很简单

  1. import org.dom4j.Document;
  2. import org.dom4j.DocumentHelper;
  3. import org.dom4j.Element;
  4. public class Foo {
  5. public Document createDocument() {
  6. Document document = DocumentHelper.createDocument();
  7. Element root = document.addElement("root");
  8. Element author1 = root.addElement("author")
  9. .addAttribute("name", "James")
  10. .addAttribute("location", "UK")
  11. .addText("James Strachan");
  12. Element author2 = root.addElement("author")
  13. .addAttribute("name", "Bob")
  14. .addAttribute("location", "US")
  15. .addText("Bob McWhirter");
  16. return document;
  17. }
  18. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/817700
推荐阅读
  

闽ICP备14008679号