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.
如何在指定行上获得焦点,JTable即如果单击第一行,第一行将获得焦点,如果我单击第二行,第二行将获得焦点,依此类推...
JTable
但是我需要将焦点放在指定的行上,即如果我想将焦点放在第一行上,它只会得到焦点,当我点击其他行时,它们不应该得到焦点。
我尝试了getTable().requestFocus()和getTable().changeSelection(1, 1, false, false)方法,但它不起作用。
getTable().requestFocus()
getTable().changeSelection(1, 1, false, false)
谁能帮帮我吗?我是 Java Swing 的新手。
您正在寻找的方法是JTable#setRowSelectionInterval和JTable#setColumnSelectionInterval