字符串比较不适用于 httpresponse

string comparison not working with httpresponse

我有一个服务器响应 response,它通过方法 EntityUtils.toString(response.getEntity()) 转换为字符串,它给出了一个字符串 campus 但是与原始字符串 S=campus by S.equals("campus") 其 returns false .

response = httpclient.execute(httppost);
S= EntityUtils.toString(response.getEntity());
Log.e("Test",S);
if(S.equals("campus"))
        Log.e("Test","this string is not printing");                   

他们也许看起来平等,但实际上并非如此!尝试 "contains(String)" 或 "startswith(String)"。