跳至主要內容

使用 XML 工具: jdom

Steven小于 1 分钟xmljavajaxp

JDOM 是一种解析 XML 的 Java 工具包。 JDOM 是 Breet Mclaughlin 和 Jason Hunter 两大 Java 高手的创作成果,2000 年初,JDOM 作为一个开放源代码项目正式开始研发。

https://github.com/LawssssCat/blog/tree/master/code/demo-java-xml/n03-jdom-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>

测试用例
package example;

import org.jdom2.Attribute;
import org.jdom2.Element;
import org.jdom2.output.Format;
import org.jdom2.output.XMLOutputter;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import utils.IOUtils;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

public class XmlJDomWriteTest {
    private Element addContent(Element p, Element c) {
        p.addContent(c);
        return c;
    }
    @Test
    void test() throws IOException {
        Element content = new Element("content");
        Element owner = addContent(content, new Element("owner"));
        owner.setText("steven");
        Element posts = addContent(content, new Element("posts"));
        for (int i = 0; i < 2; i++) {
            Element post = addContent(posts, new Element("post"));
            List<Attribute> attributes = Collections.singletonList(new Attribute("id", "P00" + i));
            post.setAttributes(attributes);
        }
        // write
        File file = new File(Objects.requireNonNull(getClass().getResource("/")).getFile(), getClass().getName() + ".xml");
        try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
            XMLOutputter xmlWriter = new XMLOutputter();
            Format format = Format.getCompactFormat();
            format.setEncoding(StandardCharsets.UTF_8.name());
            xmlWriter.setFormat(format);
            xmlWriter.output(content, fileOutputStream);
        }
        // validate
        Assertions.assertTrue(file.exists());
        Assertions.assertEquals("<content><owner>steven</owner><posts><post id=\"P000\" /><post id=\"P001\" /></posts></content>",
                IOUtils.readFile(file));
    }
}


参考:

  • https://www.cnblogs.com/wordless/p/16208704.html