ASIHTTPRequest equivalent for Android or any HTTP request manager/wrapper?

后端 未结 2 1347
梦谈多话
梦谈多话 2021-02-05 21:24

I\'m developing an app that will make extensive HTTP requests.

I know for a fact that iOS has a third-party library called ASIHTTPRequest to manage and organize all the

2条回答
  •  庸人自扰
    2021-02-05 22:06

    Use https://github.com/loopj/android-async-http
    Just like ASIHTTPRequest, this lib makes is easy to make async requests without worrying about threads or async tasks.
    It even includes a JSON parser.

    You can also use http://code.google.com/p/android-query/wiki/AsyncAPI which looks good

    Update : Android has released which does exactly what you want : http://www.javacodegeeks.com/2013/06/android-volley-library-example.html

提交回复
热议问题