当前位置:   article > 正文

Harmony鸿蒙webview打开本地网页_鸿蒙os如何打开网页

鸿蒙os如何打开网页

Harmony鸿蒙webview打开本地网页,dataability方法
一,在config.json文件中增加配置

"abilities": [
      {
        "name": "包名.MainAbility",
        "icon": "$media:icon",
        "description": "$string:mainability_description",
        "label": "$string:entry_MainAbility",
        "type": "page",
        "launchType": "standard"
      },
      {
        "name": "包名.DataAbility",
        "type": "data",
        "uri": "dataability://包名.DataAbility"
      }
    ]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

二,新建DataAbility

public class DataAbility extends Ability {
    @Override
    public RawFileDescriptor openRawFile(Uri uri, String mode) throws FileNotFoundException {
        if (uri == null) {;
            return super.openRawFile(uri, mode);
        }
        String path = uri.getEncodedPath();
        int splitIndex = path.indexOf('/', 1);
        String providerName = Uri.decode(path.substring(1, splitIndex));
        String rawFilePath = Uri.decode(path.substring(splitIndex + 1));
        RawFileDescriptor rawFileDescriptor = null;
        try {
            rawFileDescriptor = getResourceManager().getRawFileEntry(rawFilePath).openRawFileDescriptor();
        } catch (IOException e) {
            // 异常处理
        }
        return rawFileDescriptor;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

三、调用

private static final String URL_LOCAL = "dataability://包名.DataAbility/resources/rawfile/根目录/index.html";
//把你的网页放到根目录下,根目录这三个字可以改为你自己的名称
webView.getWebConfig().setDataAbilityPermit(true);//这个要加上,设置webview支持打开本地文件
webView.load(URL_LOCAL);
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/307007
推荐阅读
相关标签
  

闽ICP备14008679号