Webview离线功能(优先cache缓存+cache缓存管理)

来源:互联网 发布:大卫罗宾逊体测数据 编辑:程序博客网 时间:2024/04/30 03:31

转自: http://androiddada.iteye.com/blog/1280946


在做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 withsetCacheMode(int).

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

 

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

 

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

 

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

 

http://androiddada.iteye.com/

2.缓存管理:

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

 

 

Java代码  收藏代码
  1. // clear the cache before time numDays    
  2. private int clearCacheFolder(File dir, long numDays) {     
  3. int deletedFiles = 0;     
  4. if (dir!= null && dir.isDirectory()) {     
  5. try {     
  6. for (File child:dir.listFiles()) {     
  7. if (child.isDirectory()) {     
  8. deletedFiles += clearCacheFolder(child, numDays);    
  9. }    
  10.     
  11. if (child.lastModified() < numDays) {     
  12. if (child.delete()) {     
  13. deletedFiles++;    
  14. }    
  15. }    
  16. }    
  17. catch(Exception e) {     
  18. e.printStackTrace();    
  19. }    
  20. }    
  21. return deletedFiles;     
  22. }    

 

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

 

 

Java代码  收藏代码
  1. File file = CacheManager.getCacheFileBaseDir();    
  2.   if (file != null && file.exists() && file.isDirectory()) { for (File item : file.listFiles()) { item.delete();    
  3.   }    
  4.   file.delete();    
  5.   }    
  6.   context.deleteDatabase("webview.db");    
  7.   context.deleteDatabase("webviewCache.db");