javafx中的Basic浏览器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javafx中的Basic浏览器相关的知识,希望对你有一定的参考价值。
don't forget to add jfxrt.jar to class path
package main; 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; /** * * @web http://java-buddy.blogspot.com/ */ /** * @param args the command line arguments */ launch(args); } @Override public void start(Stage primaryStage) { primaryStage.setTitle("facebook.com"); WebView myBrowser = new WebView(); WebEngine myWebEngine = myBrowser.getEngine(); myWebEngine.load("https://google.com"); StackPane root = new StackPane(); root.getChildren().add(myBrowser); primaryStage.setScene(new Scene(root, 640, 480)); primaryStage.show(); } }
以上是关于javafx中的Basic浏览器的主要内容,如果未能解决你的问题,请参考以下文章
初始化后,在javafx中的控制器之间传递变量[duplicate]