您现在的位置是:网站首页> 编程资料编程资料
往xml中更新节点的实例代码_AJAX相关_
2023-05-25
474人已围观
简介 往xml中更新节点的实例代码_AJAX相关_
往xml中更新节点的实例代码
/* System.out.println("2323"); DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder docbuilder = factory.newDocumentBuilder(); Document parse = docbuilder .parse(new File("src/ProdQuery.xml")); // Element createElement2 = parse.createElement(""); Element createElement = parse.createElement("products"); Node item2 = parse.getChildNodes().item(parse.getChildNodes().getLength()-1); for (String item : map.keySet()) { //循环添加至products System.out.println("tianjia1"); Element clidren = parse.createElement("product"); Attr createAttribute = parse.createAttribute("name"); createAttribute.setNodeValue(item); Attr createAttribute2 = parse.createAttribute("value"); createAttribute2.setNodeValue(map.get(item)); clidren.setAttributeNode(createAttribute); clidren.setAttributeNode(createAttribute2); createElement.appendChild(clidren); } //将products添加到根目录 item2.appendChild(createElement); //创建一个TransformerFactory对象 TransformerFactory tFactory = TransformerFactory.newInstance(); //得到一个操作对象 Transformer transformer = tFactory.newTransformer(); //设置们,这个是编码 transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8"); // DOMSource source = new DOMSource(parse); System.out.println("改变文件"); StreamResult result = new StreamResult(new File("src/ProdQuery.xml")); //让xml文件换行 transformer.setOutputProperty(OutputKeys.INDENT, "yes"); transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4"); transformer.transform(source, result);*/以上这篇往xml中更新节点的实例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
您可能感兴趣的文章:
相关内容
- Ajax回退刷新页面问题的解决办法_AJAX相关_
- 全面解析$.Ajax()方法参数(推荐)_AJAX相关_
- 有关Ajax中get和post的使用问题_AJAX相关_
- 在Ajax中使用get和post所遇到的问题及解决办法_AJAX相关_
- 探讨Ajax中有关readyState(状态值)和status(状态码)的问题_AJAX相关_
- Ajax基础教程之封装(三)_AJAX相关_
- Ajax基础详解教程(二)_AJAX相关_
- 将xml文件作为一个小的数据库,进行学生的增删改查的简单实例_AJAX相关_
- Ajax基础详解教程(一)_AJAX相关_
- 基于Ajax技术实现考试倒计时并自动提交试卷_AJAX相关_
