gpt4 book ai didi

java - 等同于 .NET 的 System.Xml.XmlWriter - 在 Java 中?

转载 作者:行者123 更新时间:2023-11-30 12:00:25 26 4
gpt4 key购买 nike

我想要经过验证和测试的东西(例如 apache 通用成熟度级别),而不是来自 first search result in Google 的一些代码片段

或者是GenerationJava不是它看起来的废弃软件(download 链接和对新主机的引用 - osjava.org 都是 404)

最佳答案

StAX呢? ?

链接示例:

xtw = xof.createXMLStreamWriter(new FileWriter(fileName));
xtw.writeComment("all elements here are explicitly in the HTML namespace");
xtw.writeStartDocument("utf-8","1.0");
xtw.setPrefix("html", "http://www.w3.org/TR/REC-html40");
xtw.writeStartElement("http://www.w3.org/TR/REC-html40","html");
xtw.writeNamespace("html", "http://www.w3.org/TR/REC-html40");
xtw.writeStartElement("http://www.w3.org/TR/REC-html40","head");
xtw.writeStartElement("http://www.w3.org/TR/REC-html40","title");
xtw.writeCharacters("Frobnostication");
xtw.writeEndElement();
xtw.writeEndElement();
xtw.writeStartElement("http://www.w3.org/TR/REC-html40","body");
xtw.writeStartElement("http://www.w3.org/TR/REC-html40","p");
xtw.writeCharacters("Moved to");
xtw.writeStartElement("http://www.w3.org/TR/REC-html40","a");
xtw.writeAttribute("href","http://frob.com");
xtw.writeCharacters("here");
xtw.writeEndElement();
xtw.writeEndElement();
xtw.writeEndElement();
xtw.writeEndElement();
xtw.writeEndDocument();
xtw.flush();
xtw.close();

关于java - 等同于 .NET 的 System.Xml.XmlWriter - 在 Java 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2013356/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com