Skip to content

Instantly share code, notes, and snippets.

@skrb
Created April 8, 2012 02:04
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save skrb/2333689 to your computer and use it in GitHub Desktop.
Save skrb/2333689 to your computer and use it in GitHub Desktop.
JavaFX WebView Sample
import java.io.IOException;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Test extends Application {
@Override
public void start(Stage stage) throws Exception {
StackPane root = new StackPane();
WebView view = new WebView();
WebEngine engine = view.getEngine();
engine.load("http://localhost:8080/");
root.getChildren().add(view);
Scene scene = new Scene(root, 800, 600);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) throws IOException {
Application.launch(args);
}
}
@acyuta
Copy link

acyuta commented Jan 31, 2014

Nice. It was helping me. Thank you! :)

@gandhrekunal
Copy link

Thanks realy helpfull

@arjunguha
Copy link

Thanks. This is infinitely simpler than the crap documentation that Oracle writes.

Copy link

ghost commented Jul 30, 2018

Thanks. I could make the desktop client soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment