如何将JTree中的任意节点设置为父节点,以便可以将子节点添加到其中?

发布于 2024-10-18 04:11:17 字数 178 浏览 2 评论 0原文

如何将JTree中的当前节点作为父节点,以便向其添加子节点。我的完整数据是从数据库中获取的。

有点像下面:

root-- parent1 - children
    |- parent2 - children

我需要动态生成树

提前致谢:)

How to make current node in JTree as parent node so as to add children to it. My complete data are fetched from the database.

somewhat like below :

root-- parent1 - children
    |- parent2 - children

I need to dynamically generate the tree

Thanks in advance :)

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

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

发布评论

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

评论(2

月亮邮递员 2024-10-25 04:11:18

如果您的节点是 MutableTreeNode 例如 DefaultMutableTreeNode 使用

public void insert(MutableTreeNode newChild, int childIndex) 

方法将子节点添加到当前节点

If your nodes are MutableTreeNode e.g. DefaultMutableTreeNode use

public void insert(MutableTreeNode newChild, int childIndex) 

method to add children to current node

小瓶盖 2024-10-25 04:11:18

构建树的通常方法是构建 DefaultMutableTreeNode 实例。此类有一个 add(MutableTreeNode newChild) 方法,允许将子节点添加到现有节点。

The usual way to construct a tree is to construct a hierarchy of DefaultMutableTreeNode instances. This class has an add(MutableTreeNode newChild) method which allows adding a child to an existing node.

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