0
我正在開發一個項目。在那個項目中,我必須在Java FX GUI中顯示一個網頁。但它不起作用。它只顯示一個白色的窗口。我的網路連線開啓。WebView在JavaFX中不起作用
任何人都可以提出建議我可以做什麼來顯示我的JavaFX GUI中的網頁?
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Hyperlink;
import javafx.scene.layout.VBox;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("HTML");
stage.setWidth(500);
stage.setHeight(500);
Scene scene = new Scene(new Group());
VBox root = new VBox();
final WebView browser = new WebView();
final WebEngine webEngine = browser.getEngine();
Hyperlink hpl = new Hyperlink("google.com");
hpl.setOnAction(new EventHandler<ActionEvent>() {
@Override public void handle(ActionEvent e) {
webEngine.load("http://google.com");
}
});
root.getChildren().addAll(hpl,browser);
scene.setRoot(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
你的代碼是正確的。確保在項目中運行正確的Main類,檢查IDE設置,嘗試Clean-Build您的項目。 –
確保您擁有最新版本的Java jdk – Sedrick
我使用jdk 8.0,那麼,有什麼問題? –