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

后端 未结 2 1321
梦谈多话
梦谈多话 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 21:55

    According to this talk, if you're targeting pre-Gingerbread versions (<2.3) you should stick to Apache Http Client library. If however you're targeting Gingerbread or later, you will be safer to use the java.net.URLConneciton class as recommended by the Google engineer.

提交回复
热议问题