zoukankan      html  css  js  c++  java
  • Java Dom4j XML用法总结

    1、新建XML文档:

                 Document doc = DocumentHelper.createDocument();
                Element root = doc.addElement( "ocs");
                root.addElement( "header");
                Element body = root.addElement( "body");
                Element fontnode = body.addElement( "font");
                fontnode.addAttribute( "size", "9");
                System. out.println(root.asXML());
     
    2、打开现有XML文档(从字符串导入):
               Document doc = DocumentHelper.parseText(XMLStr);
                Node node = doc.selectSingleNode( "ocs/body/font");    
                 if (node instanceof Element)
                {
                      Element pnode = (Element) node;           
                      Attribute attr = pnode.attribute( "size");
                      System. out.println(attr.asXML());
                }
     
              Dom4j中内置了XPath,因此可以在selectSingleNode中象XPath那样访问路径字符串;
              注意:需要引用jaxen-1.1.1.jar包,否则selectSingleNode会产生异常并返回Null;
     
    3、打开现有文档(从文件导入):
              SAXReader saxReader = new SAXReader();
              Document document = saxReader.read( XMLFile);
     
    4、将Document写入到文件中:
              try
                {
                      XMLWriter output = new XMLWriter( new FileWriter( new File(XMLFile)));
                      output.write( doc);
                      output.close();
                } catch (IOException e)
                {
                      System. out.println(e.getMessage());
                }
  • 相关阅读:
    Linux _条件变量
    Linux _pthread 线程的同步 浅见
    Linux pthread 线程 浅解
    Linux _守护进程 浅解
    Linux _孤儿进程和僵尸进程 浅见
    Linux 小技巧
    Linux _sem 信号量 V_P
    树莓派ZeroW上传数据文件到阿里云对象存储OSS(Python)
    树莓派ZeroW开机自动运行
    树莓派ZeroW串口通讯
  • 原文地址:https://www.cnblogs.com/laoxia/p/4670080.html
Copyright © 2011-2022 走看看