Java:db4o可以存储org.w3c.dom.Node吗?
是否也可以存储 org.w3c.dom.Node 和 org.w3c.dom.NodeList ?
public DocumentElement {
private String name;
private Node thisNode;
private NodeList thisList;
}
如果没有,是否可以将 Node
或 NodeList
序列化为 JSON
或 String
以用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,没有。节点仅在其文档的上下文中才有意义。但是您可以做的是在字符串中生成文档的表示形式并将其存储。 (当我必须将 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.)