如何将JTree中的任意节点设置为父节点,以便可以将子节点添加到其中?
如何将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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的节点是 MutableTreeNode 例如 DefaultMutableTreeNode 使用
方法将子节点添加到当前节点
If your nodes are MutableTreeNode e.g. DefaultMutableTreeNode use
method to add children to current node
构建树的通常方法是构建 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.