标签: android networking httpurlconnection okhttp http2
我刚刚发现Android推荐的http客户端HttpUrlConnection不支持HTTP / 2。
HttpUrlConnection
是否有特定原因不在Android上使用HTTP / 2?
答案 0 :(得分:5)
如果要利用HTTP / 2,可以使用OkHttp:
https://github.com/square/okhttp
无论如何,它都优于HttpUrlConnection。如果您要做的一切都很复杂,例如从Web API获取复杂的JSON响应,我建议使用Retrofit:
https://square.github.io/retrofit/