字符串比较不与httpresponse一起使用

时间:2015-08-11 18:55:02

标签: java android string httpresponse

我有一个服务器响应response,它通过方法EntityUtils.toString(response.getEntity())转换为字符串,它提供字符串校园,但与原始字符串 S = campus <进行比较时/ strong>由S.equals("campus")返回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");                   

1 个答案:

答案 0 :(得分:0)

他们可能看起来很平等,但事实并非如此!尝试“contains(String)”或“startswith(String)”。