gpt4 book ai didi

java - 如何在没有文档的情况下创建 DOM 元素?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:48:19 26 4
gpt4 key购买 nike

使用 JAXP,创建元素的“Hello world”是:

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.newDocument();

Element e = doc.createElement("helloElement");
// attributes, append, etc...

这使得元素的创建依赖于文档对象。有没有办法在没有特定文档的情况下创建元素?像这样的东西:

Element e = DomDocument.createElement("helloElement"); //static method or so ...
return e;

实现 Element 接口(interface)太多了!

目的是从一个POJO中获取一个DOM元素而不需要传递一个文档有什么建议吗?

最佳答案

Is there any way to create an element without a particular document?

没有。 DOM 的设计方式 Document 是所有其他对象的工厂,而这些对象只能存在于特定 Document 的上下文中。因此,您已经通过从 DocumentBuilder 创建一个空文档来使用正确的方法。

the purpose is to get a DOM Element from a POJO without the need to pass a document

您可以在 POJO 中创建自己的 Document 并使用它来创建元素,但是如果您的方法的调用者想要将返回的 Element 添加到他们自己的Document 他们首先必须通过调用 adoptNode 来“采用”它,因为 Document 只允许包含它“拥有”的节点。

关于java - 如何在没有文档的情况下创建 DOM 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20284879/

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