我有从Web上获取数据的代码
String LOGIN_URL = "http://www.mywebsite.com/services/login.php";
RestClient client = new RestClient(LOGIN_URL );
client.AddParam("email", tbEmail.getText().toString());
client.AddParam("pwd", Password);
client.Execute(RequestMethod.GET);
String response = client.getResponse();
JSONObject jo = new JSONObject(response);
在使用Android 2.3的模拟器中工作正常且响应是我的数据,但是当我在Android 4.0.4(CyanogenMod9)的手机上运行相同的代码时,响应为空。 你能告诉我出了什么问题吗?
答案 0 :(得分:0)
您的手机未连接到互联网。