离线缓存就是在网络畅通的情况下将从服务器收到的数据保存到本地,当网络断开之后直接读取本地文件中的数据。如json 数据缓存到本地,在断网的状态下启动app时读取本地缓存数据显示在界面上,常用的app(网易新闻、知乎等等)都是支持离线缓存的,这样带来了更好的用户体验。
如果能够在调用网络接口后自动缓存返回的json数据,下次在断网状态下调用这个接口获取到缓存的json数据的话,那该多好呢?volley做到了这一点。
因此,今天这篇文章介绍的就是使用volley自带的数据缓存,配合universal-imageloader的图片缓存,实现断网状态下的图文显示。
实现效果
如何实现?
1.使用volley访问网络接口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/**
* 获取网络数据
*/
private void getdata() {
stringrequest stringrequest = new stringrequest(request.method.post, test_api, new response.listener<string>() {
@override
public void onresponse(string s) {
textview.settext( "data from internet: " + s);
try {
jsonobject jsonobject = new jsonobject(s);
jsonarray resultlist = jsonobject.getjsonarray( "resultlist" );
jsonobject jsonobject = (org.json.jsonobject) resultlist.opt( 0 );
string head_img = jsonobject.getstring( "head_img" );
imageloader.getinstance().displayimage(head_img, imageview);
} catch (jsonexception e) {
e.printstacktrace();
}
}
}, new response.errorlistener() {
@override
public void onerrorresponse(volleyerror volleyerror) {
}
}) {
@override
protected map<string, string> getparams() throws authfailureerror {
map<string, string> map = new hashmap<string, string>();
map.put( "phone" , "15962203803" );
map.put( "password" , "123456" );
return map;
}
};
queue.add(stringrequest);
}
|
当接口访问成功以后,volley会自动缓存此次纪录在/data/data/{package name}/cache/volley文件夹中。
打开上面的文件,可以发现接口的路径和返回值都被保存在该文件里面了。
当在断网状态时,如何获取到该接口的缓存的返回值呢?
使用requestqueue提供的getcache()方法查询该接口的缓存数据
1
2
|
if (queue.getcache().get(test_api) != null ) {
string cachedresponse = new string(queue.getcache().get(test_api).data);
|
2.使用universal-imageloader加载图片
1
|
imageloader.getinstance().displayimage(head_img, imageview);
|
注意点
1.观察上面的缓存文件可以发现,volley只缓存了接口路径,并没有缓存接口的传入参数,因此如果做分页查询的话,使用此方法是不妥的。
2.在测试过程中,依然发现有的时候获取不到缓存数据,有的时候却可以获取到。对获取缓存的代码延迟加载能够有效解决这个问题。
3.如果考虑到缓存的过期策略,可以使用更好的asimplecache框架辅助开发。对缓存有更高要求的app,依然应该使用文件缓存或数据库缓存。
以上内容是小编给大家介绍的android实现离线缓存的方法,希望对大家有所帮助!