加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

关于对XML的处理

发布时间:2020-12-15 23:12:28 所属栏目:百科 来源:网络整理
导读:目前看到的对XML的处理有2套,一套是使用jdom,另一套是使用dom4j jdom示例: SAXBuilder builder = new SAXBuilder( false );InputStream xmlInput = new FileInputStream("xxx.xml" );Document doc = builder.build(xmlInput);Element root = doc.getRootE

目前看到的对XML的处理有2套,一套是使用jdom,另一套是使用dom4j

jdom示例:

SAXBuilder builder = new SAXBuilder(false);
InputStream xmlInput = new FileInputStream("xxx.xml");
Document doc = builder.build(xmlInput);
Element root = doc.getRootElement();


Element addDTSVersion = new Element("VersionA");
addDTSVersion.setText(configDTSVersion);     
Element addrallyVersion = new Element("VersionB");         
addrallyVersion.setText(configRallyVersion);

Element addTime = new Element("Maping");         
addTime.addContent(addDTSVersion);         
addTime.addContent(addrallyVersion);

root.addContent(addTime);

List<Element> Mapinglist = root.getChildren("Maping");

XMLOutputter outputter = new XMLOutputter();try {String locaFileName = ConfigUtils.class.getResource("/"+fileName).toString();locaFileName = locaFileName.substring(6);outputter.output(doc,new FileOutputStream(locaFileName));} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读