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 包含 3 列,如果我得到选定的行,我如何访问其中的数据它的3个细胞?
谢谢。
要使用的事件是 JTable table.getSelectedRow(),它返回所选行的 int 类型的索引。您可以发表如下声明:
int selectedRow = table.getSelectedRow(); int value# = table.getValueAt(selectedRow, column #);