I'm looking for a library that handles HTTP POST, multipart etc. Is there a de-facto standard library to make these requests easier on android?
Take a look at DroidFu, and in particular the DroidFu HTTP components. They're a fairly thin wrapper around the Apache Commons HTTP stuff, but they fit most needs pretty well. It includes some niceties like optional HTTP and model caching, and even "why isn't this built in to the platform" stuff like GZip. (An aside: android.net.AndroidHttPClient is a pretty good upgrade to the older stock DefaultHttpClient stuff when you need to drop down for a little more control, but it's Android 2.2+ only and is fairly underdocumented).
If you just need multipart with a minimum hassle, you can try android_multipart_post, though I've never tried it.
EDIT:
DroidFu is now discontinued. These days if I was starting a new project I'd almost certainly use Volley, with OKHttp if I needed more control (you can even use OKHttp as the transport layer for volley if you want to do both).
Use http-request by Kevin Sawicki. http://kevinsawicki.github.com/http-request/
My favorite one is Ion (complete, under active development). It is built on top of AndroidAsync (to use alone if you don't need Ion features), both by Koushik Dutta.
Take a look at http://loopj.com/android-async-http/
Overview says: An asynchronous callback-based Http client for Android built on top of Apache’s HttpClient libraries. All requests are made outside of your app’s main UI thread, but any callback logic will be executed on the same thread as the callback was created using Android’s Handler message passing.
This library was used by popular apps such as Instagram, Pinterest, Heyzap and etc.
If you want to use keep alives and gzip and dont want to experience random time out errors unfortunately you cannot simply use one library.
On Android SDK versions below 9 you'll want to use the apache library. On Android SDK versions 9-13 the apache library has issues (random timeouts) and you'll want to use HttpUrlConnection.
Unfortunately in my tests on ICS HttpUrlConnection is really buggy and you'll want to use the Apache library for now.
Official Google Post on the topic: http://android-developers.blogspot.com/2011/09/androids-http-clients.html
Issue i've found on ICS: What android Http Client to use for Ice Cream Sandwich?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With