当前位置:  开发笔记 > 编程语言 > 正文

在Webview中打开本地Html文件 - Android

如何解决《在Webview中打开本地Html文件-Android》经验,为你挑选了3个好方法。

我在根文件夹中保存了一个文件,并尝试在webview中打开它.

这是我保存的代码:

    OutputStream outstream = null;
    outstream = openFileOutput(fileName ,MODE_WORLD_READABLE);

    /// if file the available for writing
    if (outstream != null) {
        /// prepare the file for writing
        OutputStreamWriter outputreader = new OutputStreamWriter(outstream);
        BufferedWriter buffwriter = new BufferedWriter(outputreader);

        /// write the result into the file
        buffwriter.write(result);
    }

    /// close the file
    outstream.close();

} catch (java.io.FileNotFoundException e) {
    System.out.println("File not found in the writing...");
} catch (IOException e) {
    System.out.println("In the writing...");
}

这是我调用文件的代码:

                    fileView.getSettings().setJavaScriptEnabled(true);
            fileView.loadUrl("file:///" + name); <---

并在应用程序内部,它给我一个文件未找到错误.

任何见解都有帮助.



1> 小智..:
WebView mWebView=(WebView)findViewById(R.id.mWebView);

            mWebView.loadUrl("file:///book.html");
            mWebView.getSettings().setJavaScriptEnabled(true);
            mWebView.getSettings().setSaveFormData(true);
            mWebView.getSettings().setBuiltInZoomControls(true);
            mWebView.setWebViewClient(new MyWebViewClient());

private class MyWebViewClient extends WebViewClient 
{ 
    @Override 
    //show the web page in webview but not in web browser
    public boolean shouldOverrideUrlLoading(WebView view, String url) { 
        view.loadUrl (url); 
        return true;
    }
}

试试这个



2> siddhusingh..:

实际上,当您使用file:///...
Then 打开URL时,意味着您应该将文件保存在assets目录下(比如test.html).现在假设你必须访问test.html文件,你需要这样写

loadURL("file:///android_asset/test.html');



3> Phil Lello..:

假设异常没有被击中,路径是错误的.

file:///告诉浏览器查找/ name

openFileOutput(fileName)告诉应用程序在/fileName中写入

您的网址应为"file:///"+ getFilesDir()+ File.separator + fileName

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有