gpt4 book ai didi

java - JTable 选择和取消选择不起作用

转载 作者:行者123 更新时间:2023-12-01 21:50:23 25 4
gpt4 key购买 nike

我的 JTable 有问题。首先,我在表中选择了一些条目。然而,当我取消选择其中一些时,表格无法理解它。

示例场景:我选择 job1 和 2 进行测试,然后我改变主意并取消选择 job2。但在结果中我看到了 job1 job1 和 job2 (作业 1 出现了 2 次,即使我取消选择了作业 2,我也看到了它们。)或者在选择了所有作业(选择全部按钮)后,我想取消选择所有作业(清除按钮)当我单击“清除所有”时,表格似乎是空的。这很好,但不知何故,程序的背景仍然保护所有旧的选择。我该如何解决这个问题?

尝试:

我通过读取 csv 文件创建了表格的行。

public class JobSelectionListPanel extends JPanel {

private static final long serialVersionUID = 5198916547962359735L;

private static JobSelectionListPanel INSTANCE = new JobSelectionListPanel();

public static JobSelectionListPanel getInstance() {
return INSTANCE;
}

private JTable table;
private JButton next, back, btnClear, btnNewButton, btnChooseAll;
private JobList fnnJobList = new JobList();

private JobSelectionListPanel() {

table = new JTable();
JScrollPane scrollPane = new JScrollPane(table);
table.setBorder(new CompoundBorder());

// Read all FNN jobs from file
try {
fnnJobList.readFromFile("rules.csv");
} catch (IOException e1) {
System.out.println("You are not able to read the rules.csv file");
}

// Create ArrayList of JobNames



Object[][] initialData = new Object[fnnJobList.size()][1];

int i = 0;
for (Job jobDes : fnnJobList) {
initialData[i][0] = (Object) jobDes.getJobname();
i++;
}

String[] columnNames = new String[] { "", "Your preferences" };
table.setModel(new DefaultTableModel(initialData, columnNames) {

private static final long serialVersionUID = 1L;
@SuppressWarnings("rawtypes")
Class[] columnTypes = new Class[] { Object.class, Boolean.class };

@SuppressWarnings({ "unchecked", "rawtypes" })
public Class getColumnClass(int columnIndex) {
return columnTypes[columnIndex];
}
});

table.getColumnModel().getColumn(1).setPreferredWidth(80);
table.getColumnModel().getColumn(1).setMinWidth(40);
table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
table.setCellSelectionEnabled(true);

我用户想要选择所有行,然后我实现了这个。btnChooseAll = new JButton("选择全部");

btnChooseAll.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

DefaultTableModel chooseAllData = (DefaultTableModel) table.getModel();
if (DeviceGroups.DeviceAList.size() == 0 || DeviceGroups.DeviceBList.size() == 0
|| DeviceGroups.DeviceCList.size() == 0 || DeviceGroups.DeviceDList.size() == 0)
JOptionPane.showMessageDialog(null,
"You should choose at least 1 device for each test device to apply this test case", "Invalid OPTION",
JOptionPane.ERROR_MESSAGE);
else
for (int i = 0; i < chooseAllData.getRowCount(); i++) {
for (int j = 1; j < chooseAllData.getColumnCount(); j++) {
chooseAllData.setValueAt(true, i, j);

}
}

}
});

要清除所有首选项:

 btnClear = new JButton("Clear all");
// Clear button create a model of JTable and delete all the rows of table!!
btnClear.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

DefaultTableModel clearTableData = (DefaultTableModel) table.getModel();
for (int i = 0; i < clearTableData.getRowCount(); i++) {
for (int j = 1; j < clearTableData.getColumnCount(); j++) {
clearTableData.setValueAt(null, i, j);

}
}
}
});

最佳答案

我在您的代码中看到以下问题:混合 View 索引和模型索引。这是有问题的片段:

for (int i = 0; i < table.getRowCount(); i++) {
if (table.getValueAt(i, 1) != null) {
if (((Boolean) table.getValueAt(i, 1)).booleanValue()) {
String jobName = (((DefaultTableModel) table.getModel()).getValueAt(i, 0).toString());

您正在使用 i 变量来表示 View 行索引,因为您正在检查此语句中的值:table.getValueAt(i, 1) != null

但是再进一步,您将使用 i 来索引模型:

String jobName = ((DefaultTableModel) table.getModel()).getValueAt(i, 0).toString();

如果i要作为 View 索引,则需要在对模型建立索引之前将其转换为模型索引:

 String jobName = ((DefaultTableModel) table.getModel()).getValueAt(table.convertRowIndexToModel(i), 0).toString();
<小时/>

此外,当列在 View 中(即 GUI 的屏幕上)切换时,以下内容可能无法按预期工作:

table.getValueAt(i, 1) != null

您很可能想说的是,获取模型中的第二列值,而不是 View 。最好重写为

table.getValueAt(i, table.convertColumnIndexToView(1)) != null

关于java - JTable 选择和取消选择不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35289056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com