加载本地Html Javafx时WebView没有显示任何内容

时间:2015-12-07 12:17:40

标签: javafx webview fxml

相当于标题。这是打开WebView的代码

protected void showWebContent(ActionEvent event) throws IOException {     
        WebView webView = new WebView();
        webView.getEngine().load(getFilePath());
        System.out.println("FILE PATH FOR WEBVIEW IS: " + getFilePath());
        getStage().setScene(new Scene(webView));
        getStage().setTitle("WebView");
        getStage().show();
    }

然而,它只显示一个空页

enter image description here

这是我将URL解压缩为String

时得到的结果
FILE PATH FOR WEBVIEW IS: /home/nikki/ArcticNews (copy)/index.html

SOLUTION:

new File(getFilePath()).toURI().toURL().toExternalForm()

0 个答案:

没有答案