我正在尝试通过我的 android 应用程序连接到我的本地主机上的数据库。我创建了一个 php 文件并将其存储在我的 wamp/www/myfolder 中,当我运行它时它工作正常,所以它一定是我的 android 类的问题。
public void getData(){
String result ="";
InputStream isr = null;
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://localhost/testdata/getAllCustomers.php");
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
isr = entity.getContent();
}catch(Exception e){
Log.e("log_tag", "Error in http connection");
resultView.setText("Couldnt connect to database");
我已经检查了我的代码很多次,但我找不到问题所在。我在此方法中创建了两个 morw try 捕获,用于转换结果,另一个解析数据,但是当我运行它时,会出现第一个日志,因此它不会连接到数据库。
Ps 我正在使用 eclipse,我需要一个 json 插件,我知道 eclipse IDE 支持它。