Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以以编程方式JTree连续查找句柄的位置吗?
JTree
我所说的手柄是指那个小旋钮,如果单击它,它会展开/折叠其对应的JTree行。
我正在使用 AWTRobot并试图将鼠标指向该手柄。
Robot
由于它由树的 UI 委托(通常是 的子类)控制BasicTreeUI,因此几何从一个 L&F 到下一个变化。如果没有更通用的方法,您可以使用编程导航方法的某种组合来测试/演示所需的功能。
BasicTreeUI
setRootVisible()
expandRow()
setSelectedValue()
setSelectionPath()
scrollPathToVisible()
scrollRowToVisible()