if (resEntity != null) {
res=EntityUtils.toString(resEntity);
Log.i("RESPONSE",res);
}
xc=res.equals("true");
Log.i("xc",String.valueOf(xc));
if(xc) {
Log.i("Yes","1");
}
else {
Log.i("no","0");
}
以上是我的代码,我在其中向我们公司的服务器发送一个发布请求以检查文件,如果文件存在则返回 true。我正在提供我的 logcat。
09-24 11:20:19.570: I/url for checking update(3050): http://www.digitalmarketingbox.com/webtool/playerupdate.php
09-24 11:20:33.789: I/RESPONSE(3050): true
09-24 11:20:33.789: I/xc(3050): false
如您所见,从服务器返回的响应为真,我也将其与真进行比较,那么为什么 equals() 函数返回假,请帮助我,或者我在这里做错了什么?