Skip to content Skip to sidebar Skip to footer

Android : Httpclient Post - Not Able To Send Data To Server

Hello I am trying to send data to server using httpclient. Here is my code public class MainActivity extends Activity implements OnClickListener { private String TAG; /** Called w

Solution 1:

The exception that is thrown when an application attempts to perform a networking operation on its main thread.

Use asynctask or Thread class for network calls.

Post a Comment for "Android : Httpclient Post - Not Able To Send Data To Server"