How to update JTree elements
I use JTree with TreeNode which extending DefaultMutableTreeNode.w开发者_如何转开发hen I add new node,i cant update JTree.Any help will be appreciated
if you use DefaultTreeModel try to call its reload()
method.
DefaultTreeModel model = (DefaultTreeModel) tree.getModel();
model.reload();
//or... model.reload(nodeUpdatedByYou);
Never use tree.updateUI()
as this is a look and feel operation (although it works).
Actually, it is enough to reload the parent node. Internally,
public void reload()
is using
public void reload(TreeNode node)
but with root as its parameter, so, unless you are updating the direct root's leaf, you are better of using a more fine-grained version.
Adding to the node only is not enough, the Tree needs to be notified. The correct way to do this is to let the model take care of adding/removing nodes, as it will notify correctly the Tree on the way.
In case of a DefaultTreeModel (which should be the one used in the JTree if you haven't made your own TreeModel), you have the method insertNodeInto(MutableTreeNode newChild, MutableTreeNode parent, int index), which you can use.
Since Java use MVC to implement JTree component, your operation that add a node just change the model. Besides, you should notify representation of the tree some modifications have taken place. Try use fireTreeNodes*** methods of your tree model to notify the JTree object this kind of modification. Refer Java API for details. Good luck.
Are you using DefaultTreeModel
?
If so, when adding use insertNodeInto API so that appropriate events are generated.
精彩评论