HarmonyOS 我们有一个清除缓存能力,我们希望能清楚webview的缓存资源文件和项目中的图片缓存

APP设置页有清除缓存项,请问:

1.如何获取应用的web缓存大小?

2.如何清除应用的web缓存数据?

3.如何获取应用图片缓存文件大小,并删除该缓存

我们有一个清除缓存能力,我们希望能清楚webview的缓存资源文件和项目中的图片缓存

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Excelsior_abit

1、关于如何获取应用的web缓存大小的问题,目前没有相关API获取Web组件的缓存大小;

2、关于如何清除应用的web缓存数据的问题,您可以通过removeCache()接口清除已经缓存的资源,详情请参考如下文档:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-webview-V5#removecache

3、关于如何获取应用图片缓存文件大小并删除该缓存的问题;

(1)查询缓存用storageStatistics.getCurrentBundleStats()接口, 清除文件缓存,需要调用context的cacheDir获取缓存,然后调用系统文件fs接口,判断是文件或者文件夹,再分别消除缓存。demo如下:

import { storageStatistics } from '@kit.CoreFileKit';
import fs from '@ohos.file.fs';
import { Context } from '@kit.AbilityKit';
import { BusinessError } from '@ohos.base';

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';

  //获取缓存
  getCacheSize() {
    storageStatistics.getCurrentBundleStats((error: BusinessError, bundleStats: storageStatistics.BundleStats) => {
      if (error) {
        console.error("getCurrentBundleStats failed with error:" + JSON.stringify(error));
      } else {
        let cacheSize = parseFloat((bundleStats.cacheSize / (1024*1024)).toFixed(1))
        console.info('cacheSize:' + cacheSize);
      }
    })
  }

  //清理缓存
  clearCache() {
    const context: Context = getContext(this);
    let cacheDir = context.cacheDir
    fs.listFile(cacheDir).then((filenames) => {
      for (let i = 0;i < filenames.length; i++) {
        let dirPath = cacheDir+filenames[i]
        try {
          // 判断是否文件夹
          let isDirectory = fs.statSync(dirPath).isDirectory()
          if (isDirectory) {
            fs.rmdirSync(dirPath)
          } else {
            fs.unlink(dirPath).then(() => {
              console.info('remove file succeed');
            }).catch((err: BusinessError) => {
              console.info("remove file failed with error message: " + err.message + ", error code: " + err.code);
            });
          }
        }catch (e) {
          console.log(e)
        }
      }
    })
  }

  build() {
    Column() {
      Text(this.message)
        .id('JSONParseModelPageHelloWorld')
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
        .alignRules({
          center: { anchor: '__container__', align: VerticalAlign.Center },
          middle: { anchor: '__container__', align: HorizontalAlign.Center }
        })
    }
    .height('100%')
    .width('100%')
  }
}

参考文档:

应用空间统计:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-file-storage-statistics-V5

文件管理:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-fileio-V5

(2)图片缓存问题,可以参考下ImageKnife这个图像加载缓存库,removeMemoryCache(url: string)可以清除指定内存缓存,地址如下:

https://gitee.com/openharmony-tpc/ImageKnife

分享
微博
QQ
微信
回复
3天前
相关问题
HarmonyOS webview清除缓存方法
33浏览 • 1回复 待解决
HarmonyOS 关于获取缓存清除缓存
175浏览 • 1回复 待解决
HarmonyOS 清除app缓存
181浏览 • 1回复 待解决
HarmonyOS 清除Web缓存
927浏览 • 0回复 待解决
HarmonyOS 清除缓存功能
577浏览 • 1回复 待解决
HarmonyOS 清除APP缓存问题
151浏览 • 1回复 待解决
flutter缓存如何清除
395浏览 • 1回复 待解决
HarmonyOS 如何清除Web缓存
169浏览 • 1回复 待解决
HarmonyOS如何清除应用缓存
249浏览 • 0回复 待解决
HarmonyOS web缓存清除localStorage
165浏览 • 1回复 待解决
HarmonyOS web清除缓存问题
366浏览 • 1回复 待解决
HarmonyOS 如何清除应用缓存
160浏览 • 1回复 待解决
HarmonyOS怎么清除当前应用缓存
1706浏览 • 1回复 待解决
HarmonyOS 清除缓存不起作用
165浏览 • 1回复 待解决
HarmonyOS Web如何实现清除缓存
762浏览 • 1回复 待解决