JAVA用DOM方式读取xml文件

Status.xml



    
        1
        待机
        00H
    

    
        2
        停机
        01H
    

    
        3
        启动
        02H
    

解析xml代码如下:

import java.io.InputStream;
import java.util.ArrayList;  
import java.util.HashMap;
import java.util.List;  
import java.util.Map;
import javax.xml.parsers.DocumentBuilder;  
import javax.xml.parsers.DocumentBuilderFactory;  
import javax.xml.parsers.ParserConfigurationException;  
import org.dom4j.DocumentException;
import org.dom4j.io.SAXReader;
import org.w3c.dom.Document;  
import org.w3c.dom.NamedNodeMap;  
import org.w3c.dom.NodeList;  
 
 
    /**
     * 用DOM方式读取xml文件
     * @author lune
     */  
    public class ReadxmlByDom {  
        private static DocumentBuilderFactory dbFactory = null;  
        private static DocumentBuilder db = null;  
        private static Document document = null;  
        private static List> status = null;  
        static{  
            try {  
                dbFactory = DocumentBuilderFactory.newInstance();  
                db = dbFactory.newDocumentBuilder();  
            } catch (ParserConfigurationException e) {  
                e.printStackTrace();  
            }  
        }  
    
    public Document getDocument(String url) throws DocumentException{
            SAXReader reader = new SAXReader();
            InputStream in = getClass().getClassLoader().getResourceAsStream(url);//读取文件流,Url为controller.xml文件
            //File file=new File(url);
            Document document = (Document) reader.read(in);//获得文件实例
            return document;
     }
    
    public static List> getStatus(String fileName) throws Exception{  
        //将给定 URI 的内容解析为一个 XML 文档,并返回Document对象  
        document = db.parse(fileName);  
        //按文档顺序返回包含在文档中且具有给定标记名称的所有 Element 的 NodeList  
        NodeList bookList = document.getElementsByTagName("Statu");  
        status = new ArrayList>();  
        //遍历status  
        for(int i=0;i            Map statu = new HashMap();  
            //获取第i个statu结点  
            org.w3c.dom.Node node = bookList.item(i);  
            //获取第i个statu的所有属性  
            NamedNodeMap namedNodeMap = node.getAttributes();  
            //获取已知名为id的属性值  
            String id = namedNodeMap.getNamedItem("id").getTextContent();//System.out.println(id);  
            statu.put("id", Integer.parseInt(id));
              
            //获取statu结点的子节点,包含了Test类型的换行  
            NodeList cList = node.getChildNodes();//System.out.println(cList.getLength());9  
              
            //将一个statu里面的属性加入数组  
            ArrayList contents = new ArrayList<>();  
            for(int j=1;j                org.w3c.dom.Node cNode = cList.item(j);  
                String content = cNode.getFirstChild().getTextContent();  
                contents.add(content);  
            }  
            statu.put("name", contents.get(1));  
            statu.put("status", contents.get(2));  
            status.add(statu);  
        }  
        return status;  
    }  
          
    public static void main(String[] args) {
        try {
            System.out.println(getStatus("src/com/beidou/xml/parser/Status.xml"));
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

}

输出结果:[{id=1, status=00H, name=待机}, {id=2, status=01H, name=停机}, {id=3, status=02H, name=启动}]

备注:部署到linux服务器上时,文件地址可写这样:

String path = getClass().getClassLoader().getResource("/com/beidou/xml/parser/Status.xml").getPath();


你可能感兴趣的:(JAVA用DOM方式读取xml文件)