如果句子忽略 equas() 方法比较两个字符串

If sentence ignores equas() method to compare two strings

提问人:Web777Ms 提问时间:4/26/2022 更新时间:4/26/2022 访问量:32

问:

我正在尝试将 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 = "";
Java 字符串 for 循环 方法 静态

评论

0赞 Frank Yohan Rodríguez Pérez 4/26/2022
尝试使用 , String ver = txtRefraccion.getText().toString();
0赞 Web777Ms 4/26/2022
不,它没有用
0赞 Frank Yohan Rodríguez Pérez 4/26/2022
在比较之前使用 Log 捕获两个值,并检查输出以查看问题所在。

答: 暂无答案