Browse HTML file from local client in WebView

java, javafx, javafx-2, swing

Solution

File f = new File(..);
// ..
final WebView webview = new WebView();
webview.getEngine().load(f.toURI().toURL().toString());

Problem

I am mixing a JavaFX controls to swing application. I want to use `WebView` Control of JavaFX in Swing application . Can I browse the HTML files stored on the local hard disk of client as I can show with the help of `JEditorPane` in Java? Web View can display a web page from the internet but can it also browse the local system HTML files. In `WebView` I am using the following code. ``` try { final WebView webview = new WebView(); webview.getEngine().load("http://oracle.com"); } catch(Exception ex) { ex.printStackTrace(); } ``` My query is instead of the web page from net how can I give the local HTML file in load method?

Original source

Related problems