gpt4 book ai didi

android - 无法使用Android手机调试连接到本地主机

转载 作者:行者123 更新时间:2023-11-30 04:07:50 26 4
gpt4 key购买 nike

我很难从本地主机检索数据。我使用 xampp。我想要的是将数据从本地主机显示到 android 手机 ListView 。这是我在网上找到的讨论 localhost 和 android 的基本代码。这是 fragment :

p

ublic class Database_demo extends ListActivity {

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

String result = null;
InputStream is = null;
StringBuilder sb = null;
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
List<String> r = new ArrayList<String>();

try{

//http post
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://10.0.2.2/android_connect3/");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
}
catch(Exception e){
Toast.makeText(getBaseContext(),e.toString() ,Toast.LENGTH_LONG).show();
}

//Convert response to string
try
{
BufferedReader reader = new BufferedReader(new InputStreamReader(is,"UTF-8"));

sb = new StringBuilder();

String line = null;

while ((line = reader.readLine()) != null)
{
sb.append(line + "\n");
}

is.close();

result = sb.toString();
}
catch(Exception e)
{
Toast.makeText(getBaseContext(),e.toString() ,Toast.LENGTH_LONG).show();
}
//END Convert response to string
try{
JSONArray jArray = new JSONArray(result);
JSONObject json_data=null;
for(int i=0;i<jArray.length();i++)
{
json_data = jArray.getJSONObject(i);
r.add(json_data.getString("reg"));
}
setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1, r));
}
catch(JSONException e1){
Toast.makeText(getBaseContext(),e1.toString() ,Toast.LENGTH_LONG).show();
} catch (ParseException e1) {
Toast.makeText(getBaseContext(),e1.toString() ,Toast.LENGTH_LONG).show();
}

}
}

这是我的 PHP 文件:

<?php
mysql_connect('localhost','root','');
mysql_select_db('android_sql');
$sql = "select * from reg";
$query = mysql_query($sql);

while($row = mysql_fetch_assoc($query)){
$output[] = $row;
}
print (json_encode($output));
mysql_close();


?>

这是我的异常(exception): http://pastebin.com/QZkfG0bp

最佳答案

你必须检查这一行

HttpPost httppost = new HttpPost("http://10.0.2.2/android_connect3/");

改为

HttpPost httppost = new HttpPost("http://10.0.2.2/android_connect3/your_php_file_name");

关于android - 无法使用Android手机调试连接到本地主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11342138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com