android h5使用缓存_HTML5缓存的问题与Android的WebView

博主尝试在Android设备上缓存Web应用程序,但遇到了缓存无法刷新的问题,只在Android设备上出现,其他设备正常。问题可能出在设置Web应用缓存路径为HTTP URL而不是本地目录。解决方案是确保在HTML文件中正确引用manifest文件。
摘要由CSDN通过智能技术生成

Hello I tried to cache my web application with my android device. I tried everything but nothing will work. The Cache will not refresh only on android devices and not on other devices! Below you see all the settings I've set to cache the web application.

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

web = (WebView) findViewById(R.id.webview);

web.setWebViewClient(new myWebClient());

web.getSettings().setJavaScriptEnabled(true);

web.getSettings().setCacheMode(web.getSettings().LOAD_NORMAL);

web.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);

web.getSettings().setUserAgentString(getString(R.string.user_agent_suffix));

web.getSettings().setAppCachePath("http://192.168.0.62/lastversion/cache.manifest");

web.getSettings().setAllowFileAccess(true);

web.getSettings().setAppCacheEnabled(true);

web.getSettings().setDomStorageEnabled(true);

web.loadUrl("http://192.168.0.62/lastversion/");

}

here I set my cache:

I hope someone can help me. Thanks

解决方案

web.getSettings().setAppCachePath() set's the local directory where to store the cached files not where to load the manifest from.

The manifest has to be referenced in the HTML file you want to cache:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值