【发布时间】:2017-06-08 16:48:15
【问题描述】:
这是我的代码。我想在JTable 中选择多行,我使用的是以下行:
table.getColumnModel().getSelectionModel().setSelectionMode(
javax.swing.ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
通过上述行,我可以使用键盘选择多行,但要求只能使用鼠标进行选择。
除此之外,Java 是否提供了仅使用鼠标而不使用键盘进行多选的功能?
【问题讨论】:
-
我错过了
provides for multiple selection only using mouse without using keyboard不可能直接,因为 ListSelectionModel 只是一维的,这在 API 中仅针对 JList 和 JTree 实现