Closed. This question is not reproducible or was caused by typos 。它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 Stack Overflow 的 on-topic

2年前关闭。



Improve this question




我快要疯了。也许是因为我已经工作了 12 个小时......但是为什么我的 if 语句在运行 if (band.equals("4384") 时不会评估为真?我正在将 band 打印到屏幕上,它正在读取 4384 但它不会评估为真。我已经多次使用.equals()了,但没有出现问题,我在做什么错呢?
public class Test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        String endBand = " ";

        String str = "SCELL: UARFCN 4384, Prim. SC: 362, RSCP: 70, EcNo: 44";

        endBand = getBandNumber(str);

        System.out.println("endBand is " + endBand);

    }

    // ************************************************
    // Returns the current band that the device is on.
    // Currently only coded for 3G
    // ************************************************
    private static String getBandNumber(String str) {

        // The string returned to str will be in the form of:
        // "SCELL: UARFCN  4384, Prim. SC: 362, RSCP: 73, EcNo: 33"
        // ^^^^
        // String str = read_AT("AT+XL1SET=\"IRATSCEL?\"", 10);

        String band = " ";
        int begin = 0, end = 0;

        // Filter through the string to extrace the channel number
        for (int i = 0; i < str.length(); i++) {

            char c = str.charAt(i);

            if (c == 'N' && str.charAt(i + 1) == ' ') {

                begin = i + 1;

            } else if (c == ',') {

                end = i;

                break;

            }

        }

        band = str.substring(begin, end);
        System.out.println("band is " + band);

        if (band.equals("4384")) {

            band = "5";

        } else {

            band = "2";
        }

        return band;

    }

}

最佳答案

在 4384 前面的 band 变量中有一个空格。尝试像这样打印:

System.out.println("band is '" + band + "'");

关于java - 简单的 string.equals() 如果语句不起作用 Java,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19719234/

10-15 00:24