【发布时间】:2011-07-15 22:09:04
【问题描述】:
我在解析 JSONArray 时遇到了一些问题,我正在使用 Anddev.org 中的示例。这是我的源代码:
package net.json.ejemplo;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.LinearLayout;
import android.widget.TextView;
public class Ejemplo extends Activity {
/** Called when the activity is first created. */
TextView txt;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Create a crude view - this should really be set via the layout resources
// but since its an example saves declaring them in the XML.
LinearLayout rootLayout = new LinearLayout(getApplicationContext());
txt = new TextView(getApplicationContext());
rootLayout.addView(txt);
setContentView(rootLayout);
// Set the text and call the connect function.
txt.setText("Connecting...");
//call the method to run the data retreival
txt.setText(getServerData(KEY_121));
}
public static final String KEY_121 = "http://10.0.2.2:8888/conexion2.php"; //i use my real ip here
private String getServerData(String returnString) {
String result ="";
InputStream is = null;
//the year data to send
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("year","1970"));
//http post
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(KEY_121);
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);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result=sb.toString();
result.trim();
}catch(Exception e){
Log.e("log_tag", "Error converting result "+e.toString());
}
//parse json data
try{
//JSONObject json_data = new JSONObject(result);
JSONArray jArreglo = new JSONArray(result);
for(int i=0 ; i<jArreglo.length(); i++)
{
JSONObject json_data = jArreglo.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")
);
//Get an output to the screen
returnString += "\n\t" + jArreglo.getJSONObject(i);
}
}catch(JSONException e){
Log.e("log_tag", "Error parsing data "+e.toString());
}
return returnString;
}
}
这是我的 php 代码
<?php
mysql_connect("127.0.0.1","root","123456");
mysql_select_db("PeopleData");
$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.Lang.String 中的值“br”无法转换为 JSONArray 这是什么意思?
我是 Android 和 PHP 的新手。所以,我需要一些帮助。
【问题讨论】:
-
您可以记录您尝试转换的实际 JSON 吗?
-
当我的 PHP 代码尝试打印错误消息时,我的 PHP 服务器的结果中出现“br”。与其尝试将其解析为 JSON,不如将其打印出来、阅读并追踪服务器代码中的错误。
-
思路是:通过PHP和JSON从MySQL抓取数据到Android,生成的JSON是从localhost中的数据库中提取的数据。在浏览器中,JSON 显示一个未定义索引的通知,称为“年”。该索引来自 Android 应用,在 ListArray 中。
-
在 apache 错误日志中,PHP 生成此错误,它在第 13 行显示未定义索引,即 json_encode。