如何在android中获取一个webview存档文件到InputStream?

时间:2013-01-23 22:30:13

标签: android android-webview inputstream webarchive

我之前在向WebView加载存档文件时问了一个类似的问题。

根据tutorial,我必须将存档文件加载到InputStream,以便我可以在WebArchiveReader.java中使用方法loadToWebView。

但是,在tutorial中,编写者使用以下语句获取存档文件:

InputStream is = getAssets().open("TestHtmlArchive.xml");

不幸的是,我想从“Assets”文件夹以外的其他地方获取存档文件。

WebView webView = (WebView) rootView.findViewById(R.id.webview_layout);
String url = "http://www.yahoo.com";
webView.loadUrl(url);
String path = getFilesDir().getAbsolutePath() + File.separator + "yahoo" + ".html";
webView.saveWebArchive(path);
webView.loadUrl("file://" + path);

假设我想加载文件“yahoo.html”,因为我保存在上面的代码中。

如何将它传送到InputStream的实例?

1 个答案:

答案 0 :(得分:1)

似乎向InputStream打开文件的正确方法如下所示。

            String path = getFilesDir().getAbsolutePath() + File.separator
                    + "yahoo" + ".html";

            File file = new File(path);

            try {
                InputStream is = new BufferedInputStream(new FileInputStream(file));

                WebArchiveReader wr = new WebArchiveReader() {

                    @Override
                    public void onFinished(WebView webView) {
                        System.out.println("Page loaded");
                    }
                };

                if (wr.readWebArchive(is)) {
                    wr.loadToWebView(webView);
                }

            } catch (IOException e) {
                e.printStackTrace();
            }