使用 PHP 连接 MySQL 数据库进行 Android 开发
Posted
技术标签:
【中文标题】使用 PHP 连接 MySQL 数据库进行 Android 开发【英文标题】:Connecting to MySQL database using PHP for Android Development 【发布时间】:2012-10-24 18:10:23 【问题描述】:我正在阅读有关如何使用 php 接口通过互联网将 android 连接到 mysql 数据库的教程。 我按照它说的做了一切。
php 代码是这样的:
$q=mysql_query("SELECT * FROM people WHERE birthyear>'".$_REQUEST['year']."'");
while($e=mysql_fetch_assoc($q))
$output[]=$e;
print(json_encode($output));
mysql_close();
?>
java代码是这样的:
String result = "";
//the year data to send
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("year","1980"));
//http post
try
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://example.com/getAllPeopleBornAfter.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream 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);
StringBuilder sb = new StringBuilder();
String line = null;
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());
//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")
);
catch(JSONException e)
Log.e("log_tag", "Error parsing data "+e.toString());
现在的问题是它给了我一个错误,即变量“is”不存在! 我该怎么办?
教程来自 helloandroid.com 网站:http://www.helloandroid.com/tutorials/connecting-mysql-database
【问题讨论】:
您使用的是an obsolete database API,应该使用modern replacement。您也容易受到SQL injection attacks的影响,现代 API 可以让您更轻松地从 defend 中获得。 【参考方案1】:try
InputStream is = entity.getContent();
...
...
//'is' goes out of scope here!
范围仅限于第一个 try-catch 块,因此,is
在第二个中不可用。
做:
InputStream is = entity.getContent(); // 'is' now accessible in both try-catch
HttpEntity entity = response.getEntity(); // 'entity' is now accessible in both try-catch
try
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://example.com/getAllPeopleBornAfter.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
...
...
【讨论】:
现在可以访问,但实体现在是问题所在。实体无法解决是问题所在。 @user1290467 也将实体语句移出 try-catch 块。为您需要在 2 个 try-catch 之间共享的所有内容执行此操作。 它是固定的,我用你的方式,最后eclipse告诉我使用 InputStream is = null;低于类定义。我用过,没有错误。 对了有一个新问题,运行程序后在日志中:Error conversion result java.lang.NullPointerException Error parsing data org.json.JSONException: End of input at character 0 of跨度> 这完全是一个不同的问题。您没有收到任何 JSON 响应。以上是关于使用 PHP 连接 MySQL 数据库进行 Android 开发的主要内容,如果未能解决你的问题,请参考以下文章