JavaFX FXML:加载后的空白 WebView

JavaFX FXML: Blank WebView After Load

当我尝试使用 webEngine.load(); 加载任何 html 或 url 时,我的 webView 只是空白。从我在这里读到的“JavaFX 2.2 WebView”来看,我似乎必须签署我的应用程序才能让它 运行 在沙盒模式之外。 http://docs.oracle.com/javafx/2/deployment/deploy_overview.htm#CEGJGHDA

这是导致此问题的原因吗?

我正在使用 NetBeans 8.1,在“项目设置”下我将其 运行设置为独立版。我一直在关注这些教程,每个教程都进行得很顺利。 http://docs.oracle.com/javase/8/javafx/get-started-tutorial/get_start_apps.htm#JFXST804

这是我的三个文件。

FXML

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.media.*?>
<?import javafx.scene.web.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.text.*?>
<?import javafx.geometry.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="481.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <AnchorPane prefHeight="18.0" prefWidth="600.0">
         <children>
            <HBox layoutX="157.0" layoutY="14.0" prefHeight="64.0" prefWidth="287.0">
               <children>
                  <Label text="TwitchAid">
                     <font>
                        <Font size="53.0" />
                     </font>
                  </Label>
                  <ImageView fitHeight="150.0" fitWidth="38.0" pickOnBounds="true" preserveRatio="true">
                     <image>
                        <Image url="@Twitchaid-Logo.png" />
                     </image>
                  </ImageView>
               </children>
            </HBox>
         </children>
      </AnchorPane>
      <AnchorPane prefHeight="200.0" prefWidth="200.0">
         <children>
            <WebView fx:id="webView" prefHeight="405.0" prefWidth="600.0" />
         </children>
      </AnchorPane>
   </children>
</VBox>

Java

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package twitchauthorize;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

/**
 *
 * @author Dylan
 */
public class TwitchAuthorize extends Application {

    @Override
    public void start(Stage stage) throws Exception {
        Parent root = FXMLLoader.load(getClass().getResource("FXMLTwitchAuthorize.fxml"));
        Scene scene = new Scene(root);   
        stage.setScene(scene);
        stage.show();

        stage.setResizable(false);
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }

}

Controller.java

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package twitchauthorize;

import javafx.fxml.FXML;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;

/**
 *
 * @author Dylan
 */
public class FXMLTwitchAuthorizeController {

    @FXML
    private WebView webView;

    @FXML
    private void initialize(){
        WebEngine engine = webView.getEngine();
        engine.load("http://www.google.com");
    }

}

您没有在您的 FXML 中指定控制器,因此永远不会执行控制器的初始化方法。

将以下属性定义添加到构成 FXML 根元素的 VBox 元素中:

fx:controller="twitchauthorize.FXMLTwitchAuthorizeController"