【问题标题】:Error parsing data org.json.JSONException: Value <?xml of type java.lang.String cannot be converted to JSONArray解析数据 org.json.JSONException 时出错:Java.lang.String 类型的值 <?xml 无法转换为 JSONArray
【发布时间】:2012-04-22 21:56:59
【问题描述】:

我正在编写一个打算在android设备上运行的应用程序。该应用程序应该通过php读取Mysql数据库中的信息,但是当我运行该应用程序时,Log cat提示错误'解析数据org.json时出错。 JSONException:值

我的代码是从教程下载的,请耐心等待我有一些php的基本知识,而java的知识很少。我已经测试了 php 脚本并且它运行良好,所以我不会费心附加它。

main.java 代码:

 

package test.an2mysql;

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 main 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.1.1.19/cms/test/android2mysql/read.php"; //i use my real ip here



private String getServerData(String returnString) {

   InputStream is = null;

   String result = "";
    //the data to send
    ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
    nameValuePairs.add(new BasicNameValuePair("country","undefined"));

    //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();
    }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")+
                            ", country: "+json_data.getString("country")+
                            ", documentn: "+json_data.getInt("documentn")
                    );
                    //Get an output to the screen
                    returnString += "\n\t" + jArray.getJSONObject(i);
       }
    }catch(JSONException e){
            Log.e("log_tag", "Error parsing data "+e.toString());
    }
    return returnString;
}   

}

如果您能给我任何帮助,我将不胜感激。

【问题讨论】:

  • 继续你问题的标题..当你的代码需要 JSON 时,你似乎试图解析 xml
  • @user1350102:“我已经测试了 php 脚本,它运行良好......” - 我不敢苟同。 php 脚本可能会返回“某些东西”,但它不能“完美”地工作。正如 nz_karl 所建议的那样,从您的问题标题来看,&lt;?xml 是 XML 声明的开始,这意味着您的 php 脚本正在返回 XML 数据而不是纯 JSON。
  • 我也遇到了同样的问题..当我尝试解析 json url 时遇到同样的错误..

标签: android eclipse parsing sdk


【解决方案1】:

正如您问题的 cmets 中所指出的,您的服务器似乎返回的是 XML 而不是 JSON。您只需输出result即可轻松确认:

}catch(JSONException e){
    Log.e("log_tag", "Error parsing data "+e.toString());
    Log.e("log_tag", "Failed data was:\n" + result);
}

如果是 XML(几乎可以肯定),那么您要么需要让服务器输出 JSON,要么需要解析它发送给您的 XML。

【讨论】:

    猜你喜欢
    • 2015-12-25
    • 1970-01-01
    • 2013-09-07
    • 2013-02-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-10-31
    相关资源
    最近更新 更多