0

HTML の行と変数を含む HTML の文字列を比較しようとしています。ただし、私のメソッドは、TRUE を返す必要があるときに FALSE を返し続けます。

//textLineToCheck contains the HTML string

public static boolean checkWhiteList(String textLineToCheck, String nameOfPerson) {
    textLineToCheck=textLineToCheck.trim();
    textLineToCheck=textLineToCheck.toLowerCase();
    boolean isOfValue=false;
    if (textLineToCheck.equals("<h2 class='altResource'>"+nameOfPerson+"</h2>")) {
        isOfValue=true;
    }
    return isOfValue;
} //end checkWhiteList()
4

2 に答える 2

1

問題は、altResource の大きな R にあります。そして、それを小文字の文字列と比較しています。

于 2013-09-05T13:57:54.793 に答える