2

我正在尝试解析位于http://api.pathofexile.com/ladders/Default?offset=0&limit=1的 JSON 。

{
"total": 15000,
"entries": [
    {
        "online": false,
        "rank": 1,
        "character": {
            "name": "Byrr",
            "level": 85,
            "class": "Shadow",
            "experience": 1397076236
        },
        "account": {
            "name": "Canoobians"
        }
    }
]
}

在尝试修改它以检索“在线”和“排名”元素时,我一直在关注androidhive 教程。(最终我想要所有具有大量条目的元素,但我只从这两个开始尝试理解事物。

public class AndroidJSONParsingActivity extends ListActivity {

// url to make request
private static String url = "http://api.pathofexile.com/ladders/Default?offset=0&limit=2";

// JSON node names
private static final String TAG_ENTRIES = "entries";
private static final String TAG_ONLINE = "online";
private static final String TAG_RANK = "rank";

// entries JSONArray
JSONArray entries = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // Hashmap for ListView
    ArrayList<HashMap<String, String>> entriesList = new ArrayList<HashMap<String, String>>();

    // create JSON Parser instance
    JSONParser jParser = new JSONParser();

    // getting JSON string from url
    JSONObject json = jParser.getJSONFromUrl(url);

    try {
        // Getting Array of entries
        entries = json.getJSONArray(TAG_ENTRIES);

        // looping through entries
        for (int i = 0; i < entries.length(); i++) {
            JSONObject ent = entries.getJSONObject(i);

            // storing each JSON item in a variable
            String online = ent.getString(TAG_ONLINE);
            String rank = ent.getString(TAG_RANK);

            // creating new HashMap
            HashMap<String, String> map = new HashMap<String, String>();

            // adding each child node to HashMap key => value
            map.put(TAG_ONLINE, online);
            map.put(TAG_RANK, rank);

            // adding HashList to ArrayList
            entriesList.add(map);
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }

    // Updating parsed JSON data into ListView
    ListAdapter adapter = new SimpleAdapter(this, entriesList, R.layout.list_item, new String[] { TAG_ONLINE, TAG_RANK }, new int[] { R.id.online, R.id.rank });
    setListAdapter(adapter);

我的 JSONParser() 类与教程中的相同。现在,当我运行程序时,我得到了错误:

Error parsing data org.json.JSONException: Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject.

我不知道为什么会发生这个错误,因为根据 JSONLint,JSON 是有效的,所以它不应该发送任何 HTML,对吗?有没有我遗漏的东西,或者甚至是一种完全不同/更好的提取 JSON 的方法?任何朝着正确方向的踢球都将不胜感激。

编辑:由于我是新用户,所以我还不能自我回答,但事实证明我得到了一个NullPointerExceptionJSONParser()以前没有看到的问题,并且使用HttpGet()而不是HttpPost()解决了我的问题。

谢谢。

4

2 回答 2

1

在 JSONParser 中查看这一行

  BufferedReader reader = new BufferedReader(new InputStreamReader(
                        is, "iso-8859-1"), 8);

站点返回此标头

Content-Type: text/html; charset=UTF-8

您必须在 BufferedReader 中将 iso-8859-1 更改为 UTF-8。

于 2013-02-02T21:53:55.587 回答
1

事实证明,我得到了一个NullPointerExceptionJSONParser()以前没有看到的内容,并且使用HttpGet()而不是HttpPost()解决了我的问题。

于 2013-02-03T06:02:05.623 回答