我正在尝试连接到远程数据库,在这种情况下,在android中的“localhost”由于某种原因我发出一个错误,说连接到http://localhost拒绝了。我不确定是什么导致这种情况,但我的猜测是下面的这一行
response = CustomHttpClient.executeHttpPost("http://localhost/check.php", postParameters);
String res=response.toString();
// res = res.trim();
res= res.replaceAll("\\s+","");
//error.setText(res);
if(res.equals("1"))
error.setText("Correct Username or Password");
else
error.setText("Sorry!! Incorrect Username or Password");
} catch (Exception e) {
error.setText(e.getMessage());
}
}
});
感谢您的帮助
答案 0 :(得分:1)
您没有在Android实例上运行网络服务器; Android模拟器在开发计算机上的虚拟机上运行。尝试使用开发机器的文字IP地址。