Java对xml文件进行读写的方法

Java 程序中如何解析 xml 文件

DOM 解析

// 创建一个 DocumentBuilderFactory 的对象
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
try {
    // 创建一个 DocumentBuilder 的对象
    DocumentBuilder db = dbf.newDocumentBuilder();
    // 通过 DocumentBuilder 对象的 parse 方法加载 xml 文件
    Document doc = db.parse("文件名.xml");
    // 获取所有节点名为用户指定节点名的集合
    NodeList nodeList = doc.getElementsByTagName("用户指定节点名");
    // 遍历每一个获取到的节点
    for (int i = 0; i < nodeList.getLength(); i++) {
        // 通过NodeList 的 item(i) 方法获取一个节点
        Node node = nodeList.item(i);
        // 获取节点的所有属性
        NamedNodeMap attributes = node.getAttributes();
        // 遍历节点的属性
        for (int j = 0; j < attributes.getLength(); j++) {
            Node attr = attributes.item(j);
            System.out.println(attr.getNodeName() + ":" + attr.getNodeValue());
        }
        // 解析节点的子节点
        NodeList childNodes = node.getChildNodes();
        for (int k = 0; k < childNodes.getLength(); k++) {
            Node subNode = childNodes.item(k);
            // 区分 text 类型的节点及 element 类型的节点
            if (subNode.getNodeType() == Node.ELEMENT_NODE) {
                // getTextContent 返回的是该节点所有子节点的 value
                System.out.println(subNode.getNodeName() + ":" + subNode.getTextContent());
            }
        }
    }
} catch (ParserConfigurationException e) {
    e.printStackTrace();
} catch (SAXException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

SAX解析

与DOM不同,DOM是将xml文件整个加载进程序进行解析,而SAX是通过自己创建Handler类从最外层向内逐步解析


// 获取一个 SAXParserFactory 实例
SAXParserFactory factor = SAXParserFactory.newInstance();
// 获取 SAXParser 实例
try {
    SAXParser parser = factor.newSAXParser();
    parser.parse("bookstore.xml", new handler());
} catch (ParserConfigurationException e) {
    e.printStackTrace();
} catch (SAXException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}


import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public class handler extends DefaultHandler {
    // 用来解析 xml 文件的开始标签
    @Override
    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
        super.startElement(uri, localName, qName, attributes);
        // qName 是每个节点节点名
        System.out.print(qName + " ");
        // 解析节点属性
        if (attributes.getLength() > 0) {
            for (int i = 0; i < attributes.getLength(); i++) {
                System.out.println(attributes.getQName(i) + ":" + attributes.getValue(i));
            }
        }
    }
    // 用来解析每个节点的节点值
    @Override
    public void characters(char[] ch, int start, int length) throws SAXException {
        super.characters(ch, start, length);
        String value = new String(ch, start, length);
        if (!value.trim().equals("")) {
            System.out.println(new String(ch, start, length));
        }
    }
    // 用来解析 xml 文件的结束标签
    @Override
    public void endElement(String uri, String localName, String qName) throws SAXException {
        super.endElement(uri, localName, qName);
    }
    // 用来标识解析开始
    @Override
    public void startDocument() throws SAXException {
        super.startDocument();
    }
    // 用来标识解析结束
    @Override
    public void endDocument() throws SAXException {
        super.endDocument();
    }

}

你可能感兴趣的:(Java,学习笔记,Java-学习笔记)