Volley是Google官方提供的开源网络库,在Android系统中也使用了这个网络库。
Volley是对网络功能的封装,默认根据 Android 系统版本使用不同的 Http 传输协议实现:在 Android2.3及以上使用 HurlStack传输协议实现, 在2.3以下使用 HttpClientStack传输协议实现。使用者也可以自己设置其中使用的传输协议实现,使用比较灵活。
Volley支持字符串、图片和Json的处理,但因为在解析服务器端的响应消息时,Volley是把响应消息存储在内存中,所以Volley不适合大数据量的网络请求,如下载大文件等。
在Google的官方文档中,有如下说明:
Volley is notsuitable for large download or streaming operations, since Volley holds allresponses in memory during parsing. For large download operations, considerusing an alternative like