跳至主要內容

使用 XML 工具: sax

Steven小于 1 分钟xmljavajaxp

介绍使用 JDK 自带的 SAX(Simple API for XML) 解析器处理 XML 文件。

相关信息

事件驱动, 流式操作

https://github.com/LawssssCat/blog/tree/master/code/demo-java-xml/n01-original-usage/test/java/org/example/

XML 文件
<?xml version="1.0" encoding="utf-8" ?>
<my-content>
    <web-site>http://www.example.org</web-site>
    <owner>steven</owner>
    <description>原生 java xml 操作测试消息</description>
    <posts>
        <!-- 我是注释 -->
        <post id="P001">
            <title>文章标题01</title>
            <content>hello world 01!</content>
        </post>
        <post id="P002">
            <title>文章标题02</title>
            <content>hello world 02!</content>
        </post>
    </posts>
</my-content>