4

我正在开发一个 android 应用程序 - 它从服务器请求一些数据,服务器以 JSON 格式返回数据。一切正常,除了 API。调试后,我发现了这个异常:

org.json.JSONException: Unterminated array at character 152 of

{
    "total": "2",
    "result": [
        {
            "id": "15",
            "ename": "Horror movies based on true stories",
            "vname": "Những phim kinh dị dựa trên chuyện có thật",
            "movies": "16"
        }{
            "id": "14",
            "ename": "IMDB Top 250",
            "vname": "250 bộ phim hay nhất mọi thời đại",
            "movies": "127"
        }{
            "id": "13",
            "ename": "10 good movies for women",
            "vname": "10 bộ phim hay dành cho phái đẹp",
            "movies": "10"
        }{
            "id": "12",
            "ename": "The 84th Annual Academy Awards",
            "vname": "Giải Oscars lần thứ 84 (2012)",
            "movies": "37"
        }{
            "id": "11",
            "ename": "Charlie Chaplin collection",
            "vname": "Tuyển tập hề Sác lô",
            "movies": "7"
        }{
            "id": "10",
            "ename": "Tuyển tập điệp viên 007",
            "vname": "007 collection",
            "movies": "23"
        }{
            "id": "9",
            "ename": "Donnie Yen movies collection",
            "vname": "Tuyển tập phim Chung Tử Đơn",
            "movies": "24"
        }{
            "id": "8",
            "ename": "Back to the Future trilogy",
            "vname": "Tuyển tập "Trởlạitươnglai"",
            "movies": "3"
        }{
            "id": "7",
            "ename": "Stieg Larssons Millennium trilogy",
            "vname": "Bộ tiểu thuyết Millenium của nhà văn Stieg Larsson",
            "movies": "3"
        }{
            "id": "6",
            "ename": "Chan Wook Parks vengeance trilogy",
            "vname": "Bộ ba phim Báo thù của đạo diễn Park Chan Wook",
            "movies": "3"
        }
    ]
}

我在互联网上搜索过,但没有运气。我也数到第 152 个字符,但没有错!请帮我 !

4

6 回答 6

9

我看到了一些错误:

数组中的元素应该用逗号分隔:

{
    "total":"2",
    "result":  [
        {
            "id":"15",
            "ename":"Horror movies based on true stories",
            "vname":"Nh?ng phim kinh d? du?a tren chuye?n co? tha?t",
            "movies":"16"
        }**,COMMA**
        {
            "id":"14",
            "ename":"IMDB Top 250","vname":"250 b? phim hay nh?t m?i th?i d?i",
            "movies":"127"
        }
    ]
}

请注意,我放置字符串COMMA只是为了在该位置下划线。您只需要添加,没有COMMA.

于 2012-04-26T13:27:28.053 回答
6

当您想在 json 中使用引号时,您必须使用转义引号。像这样:

[{"vname": "Tuyển tập \"Trởlạitươnglai\""}]
于 2014-07-25T23:27:58.053 回答
3

你的回复一定是这样的

{
    "total": "2",
    "result": [
        {
            "id": "15",
            "ename": "Horror movies based on true stories",
            "vname": "Những phim kinh dị dựa trên chuyện có thật",
            "movies": "16"
        },
        {
            "id": "14",
            "ename": "IMDB Top 250",
            "vname": "250 bộ phim hay nhất mọi thời đại",
            "movies": "127"
        },
        {
            "id": "13",
            "ename": "10 good movies for women",
            "vname": "10 bộ phim hay dành cho phái đẹp",
            "movies": "10"
        },
        {
            "id": "12",
            "ename": "The 84th Annual Academy Awards",
            "vname": "Giải Oscars lần thứ 84 (2012)",
            "movies": "37"
        },
        {
            "id": "11",
            "ename": "Charlie Chaplin collection",
            "vname": "Tuyển tập hề Sác lô",
            "movies": "7"
        },
        {
            "id": "10",
            "ename": "Tuyển tập điệp viên 007",
            "vname": "007 collection",
            "movies": "23"
        },
        {
            "id": "9",
            "ename": "Donnie Yen movies collection",
            "vname": "Tuyển tập phim Chung Tử Đơn",
            "movies": "24"
        },
        {
            "id": "8",
            "ename": "Back to the Future trilogy",
            "vname": "Tuyển tập Trởlạitươnglai",
            "movies": "3"
        },
        {
            "id": "7",
            "ename": "StiegLarssonsMillenniumtrilogy",
            "vname": "BộtiểuthuyếtMilleniumcủanhàvănStiegLarsson",
            "movies": "3"
        },
        {
            "id": "6",
            "ename": "ChanWookParksvengeancetrilogy",
            "vname": "BộbaphimBáothùcủađạodiễnParkChanWook",
            "movies": "3"
        }
    ]
}

而且你的一个值包含"额外的 Trở lại tương lai,所以只需删除它。

于 2012-04-26T13:28:49.723 回答
2

这有帮助吗? Android:带空格的 Json 字符串给出“未终止的对象”异常

似乎您需要查找一些有关如何形成 JSON 数组的示例。

于 2012-04-26T13:30:27.680 回答
2

这是您的 json 数组,您在 Jsonarray 中的每个元素之后都缺少逗号result

您可以在此处此处检查 JSON 是否有效

{
  "total": "2",
  "result": [
    {
      "id": "15",
      "ename": "Horror movies based on true stories",
      "vname": "Những phim kinh dị dựa trên chuyện có thật",
      "movies": "16"
    }{
      "id": "14",
      "ename": "IMDB Top 250",
      "vname": "250 bộ phim hay nhất mọi thời đại",
      "movies": "127"
    }{
      "id": "13",
      "ename": "10 good movies for women",
      "vname": "10 bộ phim hay dành cho phái đẹp",
      "movies": "10"
    }{
      "id": "12",
      "ename": "The 84th Annual Academy Awards",
      "vname": "Giải Oscars lần thứ 84 (2012)",
      "movies": "37"
    }{
      "id": "11",
      "ename": "Charlie Chaplin collection",
      "vname": "Tuyển tập hề Sác lô",
      "movies": "7"
    }{
      "id": "10",
      "ename": "Tuyển tập điệp viên 007",
      "vname": "007 collection",
      "movies": "23"
    }{
      "id": "9",
      "ename": "Donnie Yen movies collection",
      "vname": "Tuyển tập phim Chung Tử Đơn",
      "movies": "24"
    }{
      "id": "8",
      "ename": "Back to the Future trilogy",
      "vname": "Tuyển tập "Trởlạitươnglai"",
      "movies": "3"
    }{
      "id": "7",
      "ename": "Stieg Larssons Millennium trilogy",
      "vname": "Bộ tiểu thuyết Millenium của nhà văn Stieg Larsson",
      "movies": "3"
    }{
      "id": "6",
      "ename": "Chan Wook Parks vengeance trilogy",
      "vname": "Bộ ba phim Báo thù của đạo diễn Park Chan Wook",
      "movies": "3"
    }
  ]
}
于 2012-04-26T13:39:42.730 回答
0

我刚刚解决了同样的问题。该代码正在创建一个简单的 json 文件,然后读取相同的 json 文件。Read 抛出了同样的异常。在字节转换为字符串中,我添加了编码,它解决了这个问题。

private void PlayWithJson() {
    File dir = new File(Environment.getExternalStorageDirectory() + "/folder");
    if (!dir.exists()) {
        dir.mkdirs();
    }
    if (dir.exists()) {
    {
        File textfile = new File(Environment.getExternalStorageDirectory() + "/folder/file.json");
        try {
            JSONObject jsonRoot = new JSONObject();
            jsonRoot.put("MagicNumber","8461684368431684684186464");
            jsonRoot.put("Note","develop android is lame");
            FileOutputStream stream = new FileOutputStream(textfile);
            byte[] jsonBytes = jsonRoot.toString().getBytes(Charset.forName("UTF8"));
            stream.write(jsonBytes);
            stream.close();
        } catch (Exception e) {
            Log.d("Write Throw Up",e.getMessage());
        }
    }
    {
        File textfile = new File(Environment.getExternalStorageDirectory() + "/folder/file.json");
        try {
            int length = (int) textfile.length();
            byte[] bytes = new byte[length];
            FileInputStream in = new FileInputStream(textfile);
            in.read(bytes);
            in.close();
            String jsonStr = new String(bytes, Charset.forName("UTF8"));
            JSONObject readJson = new JSONObject(jsonStr);
            String MagicNumber = "";
            String Note = "";
            if (!readJson.optString("MagicNumber").isEmpty()) {
                MagicNumber = readJson.optString("MagicNumber");
            }
            if (!readJson.optString("Note").isEmpty()) {
                Note = readJson.optString("Note");
            }
            String contents = new String(MagicNumber+"\n"+Note);
            Toast.makeText(getApplicationContext(), contents, Toast.LENGTH_LONG).show();
        } catch (Exception e) {
            Log.d("Read Throw Up",e.getMessage());
        }
    }
}

我希望它有用。

于 2021-01-19T13:25:13.617 回答