Dom4j操作XML

创建XML

需要的jar包:dom4j.github.io

// 创建document对象
Document document = DocumentHelper.createDocument();
// 根节点
Element root = document.addElement("root");
// 添加属性
root.addAttribute("id", "root");
// 添加子节点
Element head =  root.addElement("head");
Element body =  root.addElement("body");
// 添加内容
head.setText("hello world");
body.setText("hello body");
// 增加内容 ( 类似StringBuilder
head.addText(",this is head");
// 修改内容(再次set
body.setText("body内容已修改");
// 清除节点内容
body.clearContent();
// 删除节点
root.remove(body);
System.out.println(document.asXML());

解析XML

URL url = new URL("https://www.zhihu.com/rss");
SAXReader reader = new SAXReader();
Document document = reader.read(url);
posted @ 2018-08-26 13:14  小鸣Cycling  阅读(115)  评论(0编辑  收藏  举报