`
libo19881179
  • 浏览: 266531 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

【so easy~】 Webview离线功能(优先cache缓存+cache缓存管理)!

阅读更多

在做Webview显示服务器的html功能时 需要加入离线功能。

http://androiddada.iteye.com/

开始思路很狭隘,以为一定应该是从服务器得到的html文件,下载到本地后加载~

但是这样不能离线查看图片,因为图片数据并不再html中,只是连接地址。

后来,经过上网各种搜寻学习,发现原来Webview有自己的缓存,如图:

 



 在手机本地 data/data/包名/cache/webviewCache 中放的是Webview显示过的图片。我们可以把它导出,后缀改成对应图片的格式 打开看看~

 

而databases中的webviewCache.db 中放的就是图片地址和图片名字对应等信息 的表~ 导出后也可用SQLite Database Browser 等工具查看

 

1.优先缓存 

好了,这里你是不是想问:既然这些图片已经存在手机缓存里面了,为什么Webview不能再把它显示出来呢?

这里我们需要设置下:

 

 

WebSettings webSettings= webView.getSettings();

webSettings.setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);

//WebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE); 默认不使用缓存!

 

LOAD_CACHE_ELSE_NETWORK的意思是:

 

Use cache if content is there, even if expired (eg, history nav) If it is not in the cache, load from network. Use with setCacheMode(int).

如果内容已经存在cache 则使用cache,即使是过去的历史记录。如果cache中不存在,从网络中获取!

 

所以加上这句,不仅可以使用cache离线显示用户浏览过的内容,还可以在有网络的情况下优先调用缓存,为用户减少流量!~

 

我有些费解的是,这个设置在我看来是很有利于用户体验的 为什么google不把它设置成默认的呢? 还需要开发者手动打开。猜想可能是因为相同页面可能会更新的原因!

 

如果离线加载出现乱码 可参考: http://androidturing.iteye.com/blog/1280656

 

http://androiddada.iteye.com/

2.缓存管理:

(1)clearCacheFolder(Activity.getCacheDir(), System.currentTimeMillis());//删除此时之前的缓存.

 

 

// clear the cache before time numDays  
private int clearCacheFolder(File dir, long numDays) {   
int deletedFiles = 0;   
if (dir!= null && dir.isDirectory()) {   
try {   
for (File child:dir.listFiles()) {   
if (child.isDirectory()) {   
deletedFiles += clearCacheFolder(child, numDays);  
}  
  
if (child.lastModified() < numDays) {   
if (child.delete()) {   
deletedFiles++;  
}  
}  
}  
} catch(Exception e) {   
e.printStackTrace();  
}  
}  
return deletedFiles;   
}  

 

(2) 退出应用前删除缓存的方法!

 

 

File file = CacheManager.getCacheFileBaseDir();  
  if (file != null && file.exists() && file.isDirectory()) { for (File item : file.listFiles()) { item.delete();  
  }  
  file.delete();  
  }  
  context.deleteDatabase("webview.db");  
  context.deleteDatabase("webviewCache.db");  
  • 大小: 10.6 KB
分享到:
评论
3 楼 asialee900715 2014-04-27  
现在的缓存惯例好像已经不是用数据库来惯例的了,想请问一下,现在要做到读取webview的缓存才怎么弄呢?
2 楼 黑洞风 2013-09-11  
这只是缓存阅读过的,有没有批量缓存的啊?不管有没有阅读过都需要缓存
1 楼 hackermaomao 2012-03-27  
太感谢了,做RSS阅读器 正好用到这个

相关推荐

Global site tag (gtag.js) - Google Analytics