JSONException in Android , how to solve?

2019-08-04 04:04发布

I have this following JSON string and i want extract the json array into separate string using android but i facing JSON exception.

       try 
       {


         String str="[{'Festivals':{'Fesa1':'english is good ','Fesb1':'my english is not so accurate','Fesa2':'oriya is very nice language','Fesb2':'my oriya is absolutely good','Fesa3':'cricket is a very popular game ','Fesb3':'cricket is life for indian','Fesa4':'hockey is the original game for india','Fesb4':'hockey needs to improve ','Fesa5':'computer is a very functional device','Fesb5':'computer is very helpful to mankind'}}] "; 

         JSONArray jsonArray = new JSONArray(str);

         String abc1=null;

         String abc2=null;

         String abc3=null;

         int i2=0;

         for(int i=0;i<jsonArray.length();i++)
         {

             JSONObject e = jsonArray.getJSONObject(i);

             JSONObject jsonObject = e.getJSONObject("Festivals");

             tt.setText(tt.getText().toString()+String.valueOf("Total Array Length: "+jsonArray.length()+"\n"));        

             for(int i1=0;i1<jsonObject.length();i1++)
             {

                 i2=i1+1;

                abc1=jsonObject.getString("Fesa"+i2);

                abc2=jsonObject.getString("Fesb"+i2);


                tt.setText(tt.getText().toString()+String.valueOf(abc1+" - "+abc2+" - "+" \n"));        

            }





         }      



    } 
    catch (JSONException e) 
    {

        tt.setText("JSON Exception");


    }

So , i am getting JSONExcepiton error. Please help me out. Please suggest me some solution

Thanks in Advance !!!

标签: android json
2条回答
趁早两清
2楼-- · 2019-08-04 05:03

Make sure JSON is valid as the answer above. In case of any special characters you will need to escape them, i.e.

\" instead of "
查看更多
爷、活的狠高调
3楼-- · 2019-08-04 05:04

Your json is not valid. Check it @ http://jsonlint.com/

It should be

[   // json array node
    {  // json object node
        "abc": { // json object abc
            "name": "andy", 
            "blood": "o+",
            "ge": 45
        }
    }
]

Parsing

JSONArray jarray = new JSONArray("your jsonstring");
for(int i=0;i<jarray.length();i++)
{
JSONObject jb = (JSONObject)jarray.get(i);
JSONObject jb1 = jb.getJSONObject("abc");
String name = jb1.getString("name");
// similarly blood and use getInt for ge
}

Edit:

Change your json to below and use the below you will get all values

String jsonstring ="{"
        +"abc"+": ["
            +"{"
               + "Fesa"+":"+ "englishisgood"
            +"},"
            +"{"
                +"Fesa"+":"+ "myenglishisnotsoaccurate"
            +"},"
             +"{"
               + "Fesa"+":"+ "germanisverynicelanguage"
            +"}"+","
            +"{"
                +"Fesa"+":"+ "mygermanisabsolutelygood"
            +"},"
            +"{"
                +"Fesa"+":"+ "cricketisaverypopulargame"
            +"},"
            +"{"
                +"Fesa"+":"+ "cricketislifeforindian"
            +"},"
            +"{"
                +"Fesa"+":"+  "hockeyistheoriginalgameforindia"
            +"},"
            +"{"
                +"Fesa"+":"+  "hockeyneedstoimprove"
            +"},"
            +"{"
                +"Fesa"+":"+  "computerisaveryfunctionaldevice"
           +"},"
           +"{"
                +"Fesa"+":"+  "computerisveryhelpfultomankind"
            +"},"
        +"]"+
    "}";

Parsing

    try
    {
    JSONObject jsb = new JSONObject(jsonstring);
    JSONArray jarray =jsb.getJSONArray("abc");
    for(int i=0;i<jarray.length();i++)
    {
    JSONObject jb = (JSONObject)jarray.get(i);
    String name = jb.getString("Fesa");
    Log.i("..........",name);
    Toast.makeText(getApplicationContext(), name, 1000).show();
    }
    }catch(Exception e)
    {
        e.printStackTrace();
    }
查看更多
登录 后发表回答