1
how to handle the server’s json response?
HttpResponse responsePOST = client.execute(post);
String responseBody = EntityUtils.toString(responsePOST.getEntity());
String "responseBody" comes from php like this {"product":[{"id":"21","cliente":"","descricao":""},{"id":"22","cliente":"","descricao":""},{"id":"19","cliente":null,"descricao":"Celular"},{"id":"17","cliente":"Fddh","descricao":"Fdf"}],"success":1}
How I Turn This String into Strings?
Good @Wakim worked great! thank you very much man.
– Emerson Barcellos