Java Tree Node selection
I have a tree and a TreePath to one of开发者_Go百科 its nodes. How do I programatically select this node? Will setSelectionPath of the JTree object alone work?
Yes. From the Java Documentation
If any component of the path is hidden (under a collapsed node), and getExpandsSelectedPaths is true it is exposed (made viewable).
精彩评论