Android HttpPost: how to get the result

Try to use the EntityUtil on your response:

String responseBody = EntityUtils.toString(response.getEntity());

Leave a Comment