gpt4 book ai didi

java - 通过仅存储根对象来在 db4o 中存储树

转载 作者:行者123 更新时间:2023-12-01 04:43:56 24 4
gpt4 key购买 nike

在我的 java 代码中,我创建了一棵树,其中树中的节点的类型为 Node。该节点具有名称、属性和类型为 Node 的子节点。我正在使用db4o为了存储树。我通过简单地存储树的根节点来做到这一点。但是,我发现db4o并不存储对象节点的所有子节点。当我从数据库检索根并遍历树时,我最多只能遍历树的 3 层。看起来较低级别的子节点丢失了。有人可以帮助我,这样我就不会丢失任何节点吗?谢谢。

下面是我的代码:

Node node1= new Node("root","this is the root",new ArrayList<Node>());
Node node2= new Node("zaid","123",new ArrayList<Node>());
Node node3= new Node("saad","999",new ArrayList<Node>());
Node node4= new Node("safia","555",new ArrayList<Node>());
Node node5= new Node("ahmad","000",new ArrayList<Node>());

node1.getChildren().add(node2);
node2.getChildren().add(node3);
node3.getChildren().add(node4);
node4.getChildren().add(node5);

ObjectContainer db= Db4oEmbedded.openFile(Db4oEmbedded.newConfiguration(),"db");
db.store(node1);

Node node= new Node("root",null,null);
List<Node> result= db.queryByExample(node);
node= result.get(0);
System.out.println(node.getName()
+","+node.getChildren().get(0).getName()
+","+node.getChildren().get(0).getChildren().get(0).getName()
+","+node.getChildren().get(0).getChildren().get(0).getChildren().get(0).getName());

我在最后一行代码中遇到异常,内容如下:

Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

最佳答案

由于它对我有用,我向您展示一个完整的工作示例:

import java.util.*;

class Node
{
String _name;
public String getName() {return _name;}
public void setName(final String name) { _name = name;}

String _value;
public String getValue() {return _value;}
public void setValue(final String value) { _value = value;}

List<Node> _children;
public List<Node> getChildren() {return _children;}
public void setChildren(final List<Node> children) { _children = children;}

Node(final String name, final String value, final List<Node> children)
{
setName(name);
setValue(value);
setChildren(children);
}
}

然后定义主类:

import java.util.*;
import com.db4o.*;
import com.db4o.query.*;
import com.db4o.ta.Activatable;

class test
{
public static void main(String[] argv)
{
Node node1= new Node("root","this is the root",new ArrayList<Node>());
Node node2= new Node("zaid","123",new ArrayList<Node>());
Node node3= new Node("saad","999",new ArrayList<Node>());
Node node4= new Node("safia","555",new ArrayList<Node>());
Node node5= new Node("ahmad","000",new ArrayList<Node>());

node1.getChildren().add(node2);
node2.getChildren().add(node3);
node3.getChildren().add(node4);
node4.getChildren().add(node5);

ObjectContainer db= Db4oEmbedded.openFile(Db4oEmbedded.newConfiguration(),"db");
db.store(node1);

Node node= new Node("root",null,null);
List<Node> result= db.queryByExample(node);
node= result.get(0);
System.out.println(
node.getName()
+","+node.getChildren().get(0).getName()
+","+node.getChildren().get(0).getChildren().get(0).getName()
+","+node.getChildren().get(0).getChildren().get(0).getChildren().get(0).getName());
}

}

构建/运行可以这样完成:

javac -classpath "db4o-8.0.249.16098-all-java5.jar:." *.java
java -classpath "db4o-8.0.249.16098-all-java5.jar:." test

您可以获得有关 db4o -> 文档 -> 教程 8.0 的更多信息。虽然8.1已经发布,但没有专门的教程。

关于java - 通过仅存储根对象来在 db4o 中存储树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16131055/

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