为什么Android的HttpUrlConnection不支持HTTP / 2?

时间:2018-10-05 18:52:56

标签: android networking httpurlconnection okhttp http2

我刚刚发现Android推荐的http客户端HttpUrlConnection不支持HTTP / 2。

是否有特定原因不在Android上使用HTTP / 2?

1 个答案:

答案 0 :(得分:5)

如果要利用HTTP / 2,可以使用OkHttp:

https://github.com/square/okhttp

无论如何,它都优于HttpUrlConnection。如果您要做的一切都很复杂,例如从Web API获取复杂的JSON响应,我建议使用Retrofit:

https://square.github.io/retrofit/