following is the screenshot of http respone in java -
and following is the text form of response:
{
  "LightGingerTheTextResult": [
    {
      "Confidence": 4,
      "From": 0,
      "LrnFrg": null,
      "LrnFrgOrigIndxs": [],
      "Mistakes": [
        {
          "CanAddToDict": false,
          "From": 0,
          "To": 0
        }
      ],
      "ShouldReplace": true,
      "Suggestions": [
        {
          "LrnCatId": 12,
          "Text": "An"
        },
        {
          "LrnCatId": 45,
          "Text": "A"
        }
      ],
      "To": 0,
      "TopLrnCatId": 12,
      "Type": 3,
      "UXFrgFrom": 0,
      "UXFrgTo": 6
    }
  ]
}
I want to extract the "text" in the suggestion.
This is my part with json. I am getting final response in "finalResult"-
JSONObject json = new JSONObject();
        try
        {
            StringBuffer response =urllib.urlopen(url);
            String finalResponse= response.toString();
            System.out.println("final response"+finalResponse);
            StringBuffer result=(StringBuffer) json.get(finalResponse);
            //finalResult=URLEncoder.encode(result.toString(), "UTF-8");
            String finalResult=result.toString();
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }

 
     
     
    