提问人:Web777Ms 提问时间:4/26/2022 更新时间:4/26/2022 访问量:32
如果句子忽略 equas() 方法比较两个字符串
If sentence ignores equas() method to compare two strings
问:
我正在尝试将 jtable 中的数据与文本字段进行比较,但 if 完全忽略了它 我正在使用静态变量进行比较
String ver = txtRefaccion.getText();
boolean rev = true;
for (int i = 0; i < this.Tabla.getRowCount(); i++) {
Principal.Refrep = tblModel.getValueAt(i, 0).toString() + "\n";
if (ver.equalsIgnoreCase(Principal.Refrep)) {
rev = false;
break;
}
}
Principal.Refrep = "";
答: 暂无答案
评论