相当于标题。这是打开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();
}
然而,它只显示一个空页
这是我将URL解压缩为String
时得到的结果FILE PATH FOR WEBVIEW IS: /home/nikki/ArcticNews (copy)/index.html
SOLUTION:
new File(getFilePath()).toURI().toURL().toExternalForm()