简单的string.equals()如果语句不能正常工作Java

Duc*_*e88 4 java string equals

我快要疯了.也许这是因为我已经工作了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;

    }

}
Run Code Online (Sandbox Code Playgroud)

reg*_*lus 7

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

System.out.println("band is '" + band + "'");
Run Code Online (Sandbox Code Playgroud)

  • 注意`band`变量周围的单引号,以显示它开始和结束的位置 - 这样你就可以看到任何意外的空格.这是一个有用的模式!(另外,使用字符串格式而不是连接;它更清晰:`String.format("band is'%s'",band)`) (2认同)

Mad*_*mer 7

在评估之后,您最终会得到一个特别忠实的字符串" 4384"(注意空格).

尝试使用......

if (band.trim().equals("4384")) {...
Run Code Online (Sandbox Code Playgroud)

代替