将android应用程序连接到mysql数据库
Posted
技术标签:
【中文标题】将android应用程序连接到mysql数据库【英文标题】:connecting android apps to mysql database 【发布时间】:2011-07-28 16:33:55 【问题描述】:我一直在尝试各种网站上显示的关于使用 php 将 mysql 数据库连接到 android 的教程。我不知道我下面的代码有什么问题。谁能告诉我我需要做什么。
这是我的 php 代码
<?php
mysql_connect("localhost","root","sugi");
mysql_select_db("android");
$q=mysql_query("SELECT * FROM people
WHERE
birthyear>'".$_REQUEST['year']."'");
while($e=mysql_fetch_assoc($q))
$output[]=$e;
print(json_encode($output));
mysql_close(); ?>
这是我的 sql 查询
CREATE TABLE `people` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` VARCHAR( 100 ) NOT NULL ,
`sex` BOOL NOT NULL DEFAULT '1',
`birthyear` INT NOT NULL
)
这是我在android中的java代码
public class main extends Activity
InputStream is;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String result = "";
//the year data to send
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("year","1990"));
//http post
try
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://localhost/index.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
Log.e("log_tag", "connection success ");
Toast.makeText(getApplicationContext(), "pass", Toast.LENGTH_SHORT).show();
catch(Exception e)
Log.e("log_tag", "Error in http connection "+e.toString());
Toast.makeText(getApplicationContext(), "fail", Toast.LENGTH_SHORT).show();
//convert response to string
try
BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null)
sb.append(line + "\n");
Toast.makeText(getApplicationContext(), "pass", Toast.LENGTH_SHORT).show();
is.close();
result=sb.toString();
catch(Exception e)
Log.e("log_tag", "Error converting result "+e.toString());
Toast.makeText(getApplicationContext(), "fail", Toast.LENGTH_SHORT).show();
//parse json data
try
JSONArray jArray = new JSONArray(result);
for(int i=0;i<jArray.length();i++)
JSONObject json_data = jArray.getJSONObject(i);
Log.i("log_tag","id: "+json_data.getInt("id")+
", name: "+json_data.getString("name")+
", sex: "+json_data.getInt("sex")+
", birthyear: "+json_data.getInt("birthyear")
);
Toast.makeText(getApplicationContext(), "pass", Toast.LENGTH_SHORT).show();
catch(JSONException e)
Log.e("log_tag", "Error parsing data "+e.toString());
Toast.makeText(getApplicationContext(), "fail", Toast.LENGTH_SHORT).show();
程序运行良好。但我无法连接到http://localhost/index.php
。程序显示失败 3 次。能帮我看看哪里出错了吗?
感谢大家的帮助。现在我可以连接到mysql了。但我无法获得 json 数据的值。 prog toast a msg 2 pass and 1 failed。谁能帮我?下图是我在 IE 中输入 http://localhost/index.php
时的图像。第 6 行就是这一切
$q=mysql_query("SELECT * FROM people WHERE birthyear>'".$_REQUEST['year']."'");
我不知道我哪里错了。
【问题讨论】:
我对 PHP 一无所知,但我看到您对您的请求有正确的答案:JSON 对象数组。可能php脚本工作正常。 【参考方案1】:如果您的 php 脚本部署在 localhost 并且您正在将您的 android 应用程序部署在模拟器上,那么您应该使用以下构造函数: HttpPost httppost = new HttpPost("http://10.0.2.2/index.php");
见:http://developer.android.com/guide/developing/devices/emulator.html#emulatornetworking
【讨论】:
嗨,非常感谢。最后它可以连接到我的 sql :D。但我无法获得我的 json_data 的值。模拟器显示 2 次通过,1 次失败。我怀疑我的 php.ini 有问题。我对吗?你能帮我解决这个问题吗? 尝试用不同的客户端调试你的脚本,看看Http回答是否正确。 你能告诉我不同客户端的脚本吗?对不起,我对这一切都很陌生。【参考方案2】:问题是您试图访问本地主机上的某些内容。运行代码时,本地主机将成为您的手机。如果您使用模拟器,则可以使用 Andrey 的解决方案。
否则,如果您在本地网络上使用 wifi,则必须知道计算机的 IP 地址。或者,如果您使用 3G、Edge、GSM 互联网。你应该输入你的电脑的ip。
你可以去那里:http://whatismyip.com
如果您使用路由器或您的 isp 阻塞了 http 端口 (80)。你必须做一个端口重定向到不同的东西。我的猜测是您应该使用手机和网络浏览器测试 url。
【讨论】:
【参考方案3】:HttpPost httppost = new HttpPost("http://localhost/index.php");
将其更改为您的本地主机的 IP 地址。
我对 Android 应用程序很陌生,但我知道如果您将帖子更改为 http://192.168.x.x(您的路由器中的 localhost 本地 IP 地址),您应该可以正常查看它。我运行了一个 WAMP 环境,并且在从我的网络中的其他计算机访问我的开发计算机 localhost 时遇到问题。我所做的只是确保我将 WAMP 服务器联机。如果您单击 WAMP 图标,您将看到“Put Online”或“Put Offline”。然后我可以通过http://192.168.x.x/android/index.php 在本地网络中的其他笔记本电脑上查看我的网站。
【讨论】:
【参考方案4】:尝试http://127.0.0.1/index.php 而不是本地主机
【讨论】:
127.0.0.1 是 localhost 的同义词。无论哪种方式,它都指向自己(电话),如果它指向自己,它将永远无法到达其他计算机。如果 mysql 服务器和 web 服务器直接托管在手机上,这将起作用。 在我看来他正在使用模拟器,我在使用 localhost 时遇到了问题,当我更改为 127.0.0.1 时它工作了。 不是我的意思,webserver/mysql 不在本地主机上。即使在模拟器中 localhost 仍然是手机而不是主机。以上是关于将android应用程序连接到mysql数据库的主要内容,如果未能解决你的问题,请参考以下文章
如何将 Android 应用程序连接到 MySQL 数据库? [复制]
如何将 android 应用程序连接到 MYSQL 服务器并从中检索数据?
无法将 Wamp MySQL 数据库连接到 Android Studio