JTree with form builder

泪湿孤枕 提交于 2020-05-09 05:20:29

问题


I created a form with default NetBeans edito and put a jTree on it. It somehow then creates bunch of elements such as "colors", "sports", "food" in there. But it is not in the creation code. Where is it coming from and how can I edit it...

Even if I do jTree1.removeAll(); everything is still there... and non of my code for adding new items to the jTree working.

private void test(java.awt.event.MouseEvent evt) {
    //trying to remove all, but it does not remove anything
    jTree1.removeAll();

    //it does print it in debug meaning that this function is called
    System.out.println("qwe");

    //create the root node
    DefaultMutableTreeNode root = new DefaultMutableTreeNode("Root");
    //create the child nodes
    DefaultMutableTreeNode child1 = new DefaultMutableTreeNode("Child 1");
    DefaultMutableTreeNode child2 = new DefaultMutableTreeNode("Child 2");

    //add the child nodes to the root node
    root.add(child1);
    root.add(child2);

    //now how do I add it to the tree?
    //???
}

I need to be able to edit jTree contents at runtime.


回答1:


Problem in next you create your JTree like this JTree tree = new JTree() (according to docs) it has sample nodes. Add next lines after you create your nodes(root,child1,child2) and all will be work:

DefaultTreeModel model =(DefaultTreeModel) jTree1.getModel();
model.setRoot(root);

Also you needn't to call jTree1.removeAll(); it is used for other purposes.(docs)

Read tutorial for JTree



来源:https://stackoverflow.com/questions/19978377/jtree-with-form-builder

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!