I have a JSON string, how can I parse it and just get the valueString in java?
{
"resourceType": "Bundle",
"id": "0",
"entry": [
    {
        "resource": {
            "resourceType": "Basic",
            "extension": [
                {
                    "url": "http://ith.sahra.com/extensions#uploadid",
                    "valueString": "1589355494289_655"
                }
            ]
        }
    }
]
}
This is my code, I tried to call extension I got null but I got response while calling entry
 public static String ParsingValue(String valuepass) throws org.json.simple.parser.ParseException{
    Object obj = new JSONParser().parse(valuepass);
    JSONObject jo = (JSONObject) obj;
    //JSONArray msg = (JSONArray) jo.getClass();
    JSONArray result = (JSONArray) jo.get("entry");
}
 
    