java 解析XML文件

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
       DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();                
        DocumentBuilder builder = factory.newDocumentBuilder();      
        Document document = builder.parse(inputStream);      
        Element element = document.getDocumentElement();     

        NodeList dataNodes = ((Element)element.getElementsByTagName("Application").item(0)).getChildNodes();
        for(int i = 0; i < dataNodes.getLength(); i++){
            if("Version".equals(dataNodes.item(i).getNodeName())){
                System.err.println("版本信息 : " + dataNodes.item(i).getFirstChild().getNodeValue());
            }else if("ChkUpdate".equals(dataNodes.item(i).getNodeName())){
                System.err.println("版本信息 : " + dataNodes.item(i).getFirstChild().getNodeValue());
            }else if("DownLoad".equals(dataNodes.item(i).getNodeName())){
                System.err.println("版本信息 : " + dataNodes.item(i).getFirstChild().getNodeValue());
            }

        }


        <?xml version="1.0" encoding="UTF-8"?>
        <Applications>
            <Application>
                <Version>1.7</Version>
                <ChkUpdate>baidu.com</ChkUpdate>
                <DownLoad>sohu.com</DownLoad>
            </Application>
        </Applications>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:iOS播放简短的音乐

下一篇:textField限制只能输入一定长度的字符