获取服务器返回信息时,LOGCAT显示1 2 3,结果为1、5、6。
判断if语句时,有错误。我认为结果是 1,但它仍然是错误的。
try {
URL url=new URL(urlstr);
URLConnection conn = null;
Log.i("Text", "1");
try {
conn = url.openConnection();
Log.i("Text", "2");
InputStream in=conn.getInputStream();
Log.i("Text", "3");
byte[] buffer=new byte[in.available()];
in.read(buffer);
String result=new String(buffer);
Log.i("Text", "result="+result);
if(result.equals("1"))
{
Log.i("Text", "4");
} else {
Log.i("Text", "5");
}
Log.i("Text", "6");
}
}
我不知道为什么。有人可以帮我吗?非常感谢。