How to handle the json response from the server?
HttpResponse responsePOST = client.execute(post);
String responseBody = EntityUtils.toString(responsePOST.getEntity());
The String "responseBody" comes from php so {"product":[{"id":"21","cliente":"","descricao":""},{"id":"22","cliente":"","descricao":""},{"id":"19","cliente":null,"descricao":"Celular"},{"id":"17","cliente":"Fddh","descricao":"Fdf"}],"success":1}
How do I transform this String into Strings?