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、一度に 1 つの列だけを選択したいです。
JTable
などを見ListSelectionModel.SINGLE_SELECTIONたことがありますが、それは一度に 1 つの行だけを選択することです。1 つの列を選択するのに似たものが必要ですが、列内の複数のセルが必要です。
ListSelectionModel.SINGLE_SELECTION
何か案は?
使用する:
table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); table.setCellSelectionEnabled(true);