Java:d​​b4o可以存储org.w3c.dom.Node吗?

发布于 2024-12-11 01:45:07 字数 340 浏览 0 评论 0原文

是否也可以存储 org.w3c.dom.Node 和 org.w3c.dom.NodeList ?

public DocumentElement {
private String name;
private Node thisNode;
private NodeList thisList;
}

如果没有,是否可以将 NodeNodeList 序列化为 JSONString 以用于 db4o 存储?

是否有 db4o 持久性支持的数据类型列表?我在文档中找不到它。

Is it possible to store org.w3c.dom.Node and org.w3c.dom.NodeList as well?

public DocumentElement {
private String name;
private Node thisNode;
private NodeList thisList;
}

If not, is it possible to serialize Node or NodeList into JSON or String for db4o storage?

is there a list of supported data types for persistence with db4o? I couldn't find it on the documentation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过潦 2024-12-18 01:45:07

一般来说,没有。节点仅在其文档的上下文中才有意义。但是您可以做的是在字符串中生成文档的表示形式并将其存储。 (当我必须将 XML 存储在数据库中时,我会这样做,除非我在压缩后存储它;这对我的应用程序来说没问题,因为它不是数据库必须能够查看内部的字段。)

In general, no. Nodes only make sense within the context of their Document. But what you can do is generate a representation of the document in a string and store that. (I do that when I have to store XML in a database, except I store it after compressing it; that's OK for my application, because it's not a field that the DB has to be able to look inside.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文