Joe Ho
Joe Ho

Reputation: 928

Which way is most stable and efficiency for http connection at android platform

As we know there are several methodology for http connection.
My social network application will start a lot of uploading, downloading and synchronization's task.
So I need stable and more efficiency connection.
How many methods for http connection in Android?
Which one is more efficiency?
Exception HttpURLConnection, how can I set up a connection to post and get ?

Upvotes: 2

Views: 276

Answers (1)

Labeeb Panampullan
Labeeb Panampullan

Reputation: 34833

Since we are coding in java for android, we can use any of the http connections methods that are in java.
The methods in org.apache.http will work fine

Upvotes: 3

Related Questions