CloseableHttpClient closeableHttpClient = HttpClients.createDefault();
HttpGet httpGet=new HttpGet(url);
try {
CloseableHttpResponse response = closeableHttpClient.execute(httpGet);
String result = EntityUtils.toString(response.getEntity());
System.out.println(result);
JSONObject jsonObject=new JSONObject();
JSONObject object=jsonObject.parseObject(result);
String a= object.getString("showapi_res_body");
JSONObject object1=jsonObject.parseObject(a);
String b=object1.getString("text");
System.out.println(a);
System.out.println(b);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}