gpt4 book ai didi

java - 在 java 中使用渲染器是否有任何其他解决方案来选择行?我试过 table.setRowSelectionInterval();但这行不通

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:20:49 24 4
gpt4 key购买 nike

我想我有一个简单的问题。我是 Java 的新手。我不知道如何根据表中单行文本字段的输入选择(突出显示)单行。我试过 setRowSelectionInterval(index,index1) 但它根本不起作用。你有什么简单的解决方案吗?提前致谢。

  textField.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
int rowcount = table.getRowCount();
int colcount = table.getColumnCount();

String str = textField.getText();
String[] arr2 = str.split("\\|");
String arr2split = arr2[1];
String arr3split = arr2[2];
table.clearSelection();
for (int i = 0; i < rowcount; i++) {
if (table.getValueAt(i, 1).toString().equals(arr2split) && table.getValueAt(i, 3).toString().equals(arr3split)) {
//table.setBackground(new java.awt.Color(255, 72, 72));
table.setRowSelectionInterval(0,0);

}
}
}
});

最佳答案

我找到了解决方案。

      textField.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
int rowcount = table.getRowCount();
int colcount = table.getColumnCount();

table.setRowSelectionAllowed(true);//this is the new line
table.setColumnSelectionAllowed(false);//this is the new line

String str = textField.getText();
String[] arr2 = str.split("\\|");
String arr2split = arr2[1];
String arr3split = arr2[2];

for (int i = 0; i < rowcount; i++) {
if (table.getValueAt(i, 1).toString().equals(arr2split) && table.getValueAt(i, 3).toString().equals(arr3split)) {

table.setRowSelectionInterval(i,i);

}
}
}
});

关于java - 在 java 中使用渲染器是否有任何其他解决方案来选择行?我试过 table.setRowSelectionInterval();但这行不通,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57704838/

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