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

Dan*_*e B 2 networking android httpurlconnection okhttp http2

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

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

nas*_*sch 6

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

https://github.com/square/okhttp

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

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