Android Http Response Handling
here's my code that sends an HTTP Request : package com.example.database; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Lis
Solution 1:
try after removing BasicResponseHandler. it should work. and check in Menifest for perticuler permission
HttpResponse response = httpclient.execute(httppost);
String responseBody = EntityUtils.toString(response.getEntity());
Post a Comment for "Android Http Response Handling"