在Phonegap android上清除用户数据或清除缓存

在Phonegap android上清除用户数据或清除缓存,第1张

概述如何使用PhoneGap和 Android清除用户数据或清除缓存?下面的代码不起作用.我应该在哪里进行更改;在HTML方面还是在Java方面?此外,我正在访问一个AJAX请求,并且在第二次尝试PUT方法时,数据不会更新,因此我的主要疑问是Android存储的用户数据.我在我的AJAX请求中添加了cache:false以确保它不存储缓存.但它仍然无效.有想法该怎么解决这个吗? 我有这个代码来自另一个 如何使用PhoneGap和 Android清除用户数据或清除缓存?下面的代码不起作用.我应该在哪里进行更改;在HTML方面还是在Java方面?此外,我正在访问一个AJAX请求,并且在第二次尝试PUT方法时,数据不会更新,因此我的主要疑问是AndroID存储的用户数据.我在我的AJAX请求中添加了cache:false以确保它不存储缓存.但它仍然无效.有想法该怎么解决这个吗?

我有这个代码来自另一个问题.

public static voID deleteCache(Context context) {    try {        file dir = context.getCacheDir();        if (dir != null && dir.isDirectory()) {            deleteDir(dir);        }    } catch (Exception e) {}}public static boolean deleteDir(file dir) {    if (dir != null && dir.isDirectory()) {        String[] children = dir.List();        for (int i = 0; i < children.length; i++) {            boolean success = deleteDir(new file(dir,children[i]));            if (!success) {                return false;            }        }    }    return dir.delete();}

所以基本上我的POSActivity.java看起来像这样.

public class PocActivity extends DroIDGap {/** Called when the activity is first created. */@OverrIDepublic voID onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    super.setRequestedOrIEntation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);    super.setIntegerProperty("splashscreen",R.drawable.is);    super.setIntegerProperty("loadUrlTimeoutValue",60000);    deleteCache(this);    super.loadUrl("file:///androID_asset/www/index.HTML");}public static voID deleteCache(Context context) {    try {        file dir = context.getCacheDir();        if (dir != null && dir.isDirectory()) {            deleteDir(dir);        }    } catch (Exception e) {}}public static boolean deleteDir(file dir) {    if (dir != null && dir.isDirectory()) {        String[] children = dir.List();        for (int i = 0; i < children.length; i++) {            boolean success = deleteDir(new file(dir,children[i]));            if (!success) {                return false;            }        }    }    return dir.delete();}}
解决方法 加载index.HTML后,在活动文件的oncreate()方法中添加以下代码:
if (super.appVIEw != null) {     super.appVIEw.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);}
总结

以上是内存溢出为你收集整理的在Phonegap android上清除用户数据或清除缓存全部内容,希望文章能够帮你解决在Phonegap android上清除用户数据或清除缓存所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1135750.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存