我有这段代码用于从网络获取数据
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)的手机上运行相同的代码时,响应为空。你能告诉我有什么问题吗?