我尝试将服务器数据库与我的Android应用程序(php + mysql)连接。
当我做makeHttpRequest时,Logcat显示类似" httphostconnectexception连接到http // localhost被拒绝"
我知道你被问了好几次,我试图解决它,但是看到每个回复仍然无效。
重要: 1.""适用于我的浏览器但不适用于我的模拟器。 两个。试过http://jsonlint.com json对象并更正。
感谢您的关注!
protected String doInBackground(String... args)
{
List<NameValuePair> params = new ArrayList<NameValuePair>();
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest("http://10.0.2.2/test/get_all_users.php", "GET", params);
//......
}
答案 0 :(得分:0)
您是否检查过Internet权限。如果没问题,那就把你的清单文件放在这里。
答案 1 :(得分:0)
我真的不知道哪个是问题,但它确实有效。我已经回来重新启动Xampp及其所有组件,两个模拟器使用甚至Mac,它都有效(我认为它与Apache有关,但我不知道)。
感谢您的回答