0

以下是我将 android 应用程序与 MySQL DB 连接起来的代码。当我在我的 android 手机上运行它时,它只显示一个纯屏幕。我的 logcat 中没有错误。当我使用浏览器运行它时,"192.168.1.11/city.php"我正在从数据库中提取城市。但是当我在我的 android 设备上运行它时,同样不起作用。请帮忙

安卓类:

 public class City extends ListActivity {

     JSONArray jArray;
     String result = null;
     InputStream is = null;
     StringBuilder sb=null;

     @Override
     public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.main);

     ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
     //http post
     try{
        HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost("http://192.168.1.11/city.php");
        httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
        HttpResponse response = httpclient.execute(httppost);
        HttpEntity entity = response.getEntity();
        is = entity.getContent();
        }catch(Exception e){
        Log.e("log_tag", "Error in http connection"+e.toString());
        }
       //convert response to string
       try{
        BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
        sb = new StringBuilder();
        sb.append(reader.readLine() + "\n");

        String line="0";
        while ((line = reader.readLine()) != null) {
                  sb.append(line + "\n");
        }
    is.close();
    result=sb.toString();
    }catch(Exception e){
          Log.e("log_tag", "Error converting result "+e.toString());
    }
   //paring data
   int ct_id;
   String ct_name;
   try{
  jArray = new JSONArray(result);
  JSONObject json_data=null;
  for(int i=0;i<jArray.length();i++){
         json_data = jArray.getJSONObject(i);
         ct_id=json_data.getInt("CITY_ID");
         ct_name=json_data.getString("CITY_NAME");
     }
  }
  catch(JSONException e1){
      Toast.makeText(getBaseContext(), "No City Found" ,Toast.LENGTH_LONG).show();
  } catch (ParseException e1) {
        e1.printStackTrace();
}
   }
    }
}

activity_city.xml 代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".City" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world" />

php代码:

 <?php
 ob_start();
 $host="localhost"; // Host name 
 $username=""; // Mysql username 
 $password=""; // Mysql password 
 $db_name="test"; // Database name 
 $tbl_name="CITY"; // Table name 
 mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
 mysql_select_db("$db_name")or die("cannot select DB");
 $sql=mysql_query("select * from CITY");
 while($row=mysql_fetch_assoc($sql))
{
$output[]=$row;
print(json_encode($output));
}
mysql_close();
?>

在我的 Android 清单文件中包含 INTERNET 权限。

我不知道我哪里出错了。请帮忙。

4

5 回答 5

0

PHP 文件位于何处。在本地计算机或 Web 服务器上。

如果 PHP 文件位于本地计算机中,则无法从 android 应用程序访问它。

还要验证您是否已授予 android 应用程序的 Internet 权限。

于 2012-12-14T07:49:32.297 回答
0

1)你确定你的 localhost ip 是“ http://192.168.1.11 ”吗?尝试放两个 / 像这样“ http://192.168.1.11//city.php

我已将此 IP 用于我的 xampp“ http://10.0.2.2//Mobile/login2.php ”或尝试使用 127.0.1.1 或 127.0.0.1

2)试试这个链接。如果您在 java 或 php 代码中做错了什么,这将对您有所帮助。

于 2012-12-14T08:39:58.380 回答
0

确保您的手机与服务器位于同一网络中。

尝试移动

打印(json_encode($输出));

跳出循环

于 2012-12-14T07:21:27.443 回答
0

你的PHP代码需要改变..所以我改变了它并把它放回去..

<?php
     ob_start();
     $host="localhost"; // Host name              Changed
     $username="root"; // Mysql username          Changed
     $password=""; // Mysql password 
     $db_name="test"; // Database name 

     $tbl_name="CITY"; // Table name 
     mysql_connect($host, $username, $password)or die("cannot connect");          //Changed
     mysql_select_db($db_name)or die("cannot select DB");           //Changed
     $sql=mysql_query("select * from CITY");
     while($row=mysql_fetch_assoc($sql))
     {
          $output[]=$row;
          print(json_encode($output));
     }
     mysql_close();
?>
于 2012-12-14T07:24:02.867 回答
0

当你想在手机上测试你的应用程序时,不要使用 localhost。您的手机无法访问本地主机上的 PHP 文件。

我是否可以建议在线托管您的 PHP 和 SQL 文件并继续测试。

于 2012-12-14T08:16:23.697 回答