国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

JDOM與XML的案例

2019-11-18 14:49:00
字體:
來源:轉載
供稿:網(wǎng)友
import java.io.IOException;
import java.util.Iterator;
import java.util.List;

import org.jdom.Comment;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.PRocessingInstrUCtion;
import org.jdom.input.DOMBuilder;
import org.jdom.input.SAXBuilder;
import org.jdom.output.DOMOutputter;

/*
 * Simple demo of JDOM
 */
public class JDOMDemo {

    public static void main(String[] args) {
    // Must be at least one file or URL argument
        if (args.length == 0) {
            System.out.println("Usage: java JDOMDemo URL [...]"); 
        } 
        SAXBuilder saxBuilder = new SAXBuilder();
        DOMBuilder domBuilder = new DOMBuilder();
        for (int i = 0; i < args.length; i++) {
            try {
                Document jdomDocument = saxBuilder.build(args[i]);

                DOMOutputter domOutputter = new DOMOutputter();

                /*
                 * Test getting DOM Document from JDOM Document
                org.w3c.dom.Document domDocument = domOutputter.output(doc);
                 */

                /*
                 * Test getting DOM Element from JDOM Element
                 */
                org.w3c.dom.Element domElement = 
                  domOutputter.output(jdomDocument.getRootElement());

                /*
                 * Test getting JDOM Element from DOM Element
                 */
                org.jdom.Element jdomElement = domBuilder.build(domElement);
                demo(jdomElement);

            } catch (JDOMException e) { // indicates a well-formedness or other error
                System.out.println(args[i] + " is not a well formed xml document.");
                System.out.println(e.getMessage());
            } catch (IOException ex) {
        System.out.println("Input or Output error:" + 
          args[i] + ": " + ex);
      }     
        }
    }

    public static void demo(Document doc) {

        List children = doc.getContent();
        Iterator iterator = children.iterator();
        while (iterator.hasNext()) {
            Object o = iterator.next();
            if (o instanceof Element) {
                demo((Element) o);
            }
            else if (o instanceof Comment)
        doComment((Comment) o);
            else if (o instanceof ProcessingInstruction) 
        doPI((ProcessingInstruction) o);
        }
    }     

    public static void demo(Element element) {
    System.out.println("Element " + element);

        List attributes = element.getAttributes();
        List children = element.getContent();
        Iterator iterator = children.iterator();
        while (iterator.hasNext()) {
            Object o = iterator.next();
            if (o instanceof Element) {
                demo((Element) o);
            }
            else if (o instanceof Comment) 
        doComment((Comment)o);
            else if (o instanceof ProcessingInstruction) 
        doPI((ProcessingInstruction)o);
            else if (o instanceof String) {
                System.out.println("String: " + o);
            }   
        }
    }  

  public static void doComment(Comment c) {
    System.out.println("Comment: " + c);
  }

  public static void doPI(ProcessingInstruction pi) {
    System.out.println("PI: " + pi);
  }
}
// demo xml file
/*
<?xml version="1.0"?>
<people>
<person>
  <name>Ian Darwin</name>
  <email>http://www.darwinsys.com/</email>
  <country>Canada</country>
</person>
<person>
  <name>Another Darwin</name>
  <email type="intranet">afd@node1</email>
  <country>Canada</country>
</person>
</people>


*/

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 楚雄市| 根河市| 巨野县| 漳平市| 民勤县| 济南市| 绥德县| 德惠市| 榆社县| 吉林省| 应用必备| 克东县| 张家港市| 鲁山县| 资中县| 县级市| 甘南县| 余庆县| 安庆市| 玉龙| 宜章县| 绥中县| 华蓥市| 牟定县| 邯郸县| 应城市| 南皮县| 贵州省| 九江县| 尼勒克县| 井陉县| 梁平县| 辛集市| 集安市| 盐津县| 沈阳市| 修武县| 泉州市| 镇安县| 大名县| 安西县|