簡體   English   中英

JavaFX FXML場景切換不起作用[NullPointerException]

[英]JavaFX FXML scene switching is not working [NullPointerException]

我嘗試按按鈕時切換布局。 我嘗試了很多事情,還在此處搜索了stackoverflow,但是給出的答案似乎並不適合我。

我的FrontendView.class:

/* FrontendView Class by @Aebian */
package org.aebian.umFrontend.view;

import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.image.Image;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javafx.stage.StageStyle;

import java.io.IOException;


public class FrontendView extends Application {

    @FXML
    protected static Button btnLogin, btnSave, btnDiscard, btnRefresh, btnEdit;
    @FXML
    private Stage primaryStage;
    @FXML
    private Scene scene;
    @FXML
    private VBox vDefault;
    @FXML
    protected BorderPane rootLayout;

    private double xOffset = 0;
    private double yOffset = 0;

    @Override
    public void start(Stage primaryStage) {

        GridPane root = new GridPane();
        primaryStage.setMinWidth(800);
        primaryStage.initStyle(StageStyle.UNDECORATED);

        primaryStage.setMinHeight(600);
        primaryStage.setResizable(false);
        primaryStage.getIcons().add(new Image("file:res/images/uMgmt.png"));

        primaryStage.setTitle("User Management");
        Scene scene = new Scene(root, 800, 600);

        primaryStage.setScene(scene);
        this.primaryStage = primaryStage;
        root.setAlignment(Pos.CENTER);

        showRoot();
        showLogin();
    }

    public void showRoot() { // Load root layout
        try {
            FXMLLoader loader = new FXMLLoader();
            loader.setLocation(FrontendView.class.getResource("UI/umFrontendRoot.fxml"));
            rootLayout = loader.load();
            rootLayout.setId("umFrontend");

            //Let the root Layout be able to moved around.
            rootLayout.getTop().setOnMousePressed(new EventHandler<MouseEvent>() {
                @Override
                public void handle(MouseEvent event) {
                    xOffset = event.getSceneX();
                    yOffset = event.getSceneY();
                }
            });
            rootLayout.getTop().setOnMouseDragged(new EventHandler<MouseEvent>() {
                @Override
                public void handle(MouseEvent event) {
                    primaryStage.setX(event.getScreenX() - xOffset);
                    primaryStage.setY(event.getScreenY() - yOffset);
                }
            });

            // Show the scene containing the root layout.
            Scene scene = new Scene(rootLayout);
            primaryStage.setScene(scene);
            String css = FrontendView.class.getResource("UI/umFrontendStyles.css").toExternalForm();
            scene.getStylesheets().clear();
            scene.getStylesheets().add(css);

            primaryStage.show();

        } catch (IOException e) {
        }
    }

    public void showLogin() { // Load the login page.
        try {
            FXMLLoader loader = new FXMLLoader();
            loader.setLocation(FrontendView.class.getResource("UI/umFrontendLogin.fxml"));
            vDefault = loader.load();
            // Set login to center of root layout.
            rootLayout.setCenter(vDefault);
        } catch (IOException e) {
        }
    }

    public void showAbout() {  // Load the about page.
        try {
            FXMLLoader loader = new FXMLLoader();
            loader.setLocation(FrontendView.class.getResource("UI/umFrontendAbout.fxml"));
            vDefault = loader.load();

            // Set about page to center of root layout.
            this.rootLayout.setCenter(vDefault);
        } catch (IOException e) {
        }
    }

    public void showAdminOverview() {  // Load the admin overview / edit page.
        try {
            FXMLLoader loader = new FXMLLoader();
            loader.setLocation(FrontendView.class.getResource("UI/umFrontendAdminOverview.fxml"));
            VBox showAdminOverview = loader.load();
            // Set admin overview page to center of root layout.
            rootLayout.setCenter(showAdminOverview);
        } catch (IOException e) {
        }
    }

    public void showUserOverview() {  // Load the user overview / edit page.
        try {
            FXMLLoader loader = new FXMLLoader();
            loader.setLocation(FrontendView.class.getResource("UI/umFrontendUserOverview.fxml"));
            VBox showUserOverview = loader.load();
            // Set admin overview page to center of root layout.
            rootLayout.setCenter(showUserOverview);
        } catch (IOException e) {
        }
    }

    /**
     * Getter and setter.
     *
     * @return
     */
    public BorderPane getBorderPane() {
        return rootLayout;
    }

}

在第62行,我調用了showLogin() ,它運行正常。 如果我嘗試通過按鈕運行它,它將失敗。 同樣適用於showAbout() 如果我將第62行的showLogin()替換為此,它將起作用。 在按鈕上不會。

我的FrontendViewController.class:

package org.aebian.umFrontend.view;

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.Parent;
import javafx.scene.control.Alert;
import javafx.scene.control.Button;
import javafx.scene.control.ButtonType;
import javafx.scene.control.MenuItem;

import java.io.IOException;
import java.util.Optional;

public class FrontendViewController {

    FrontendView FView = new FrontendView();
    Boolean admin = false;

    @FXML
    MenuItem appClose;
    @FXML
    MenuItem appAbout;
    @FXML
    Button buttonLogin;
    @FXML
    Parent root;

    /* Button Events  */

    @FXML
    private void handleButtonAction(ActionEvent e) throws IOException {

        if (e.getSource() == appClose) { // Exit application when user clicks on Edit > Close
            System.exit(0);
        }

        else if (e.getSource() == appAbout) { // Show About page when user clicks on Help > About
            FView.showAbout();
        }

        else if (e.getSource() == buttonLogin) { // Function that gets triggered when the user presses the Login Button
            if (admin == true) {
                FView.showAdminOverview();
            } else {
                FView.showUserOverview();
            }
        }

    }

     /* Frontend Dialogs  */

    public void delUserConfirmDialog() {

        Alert alert = new Alert(Alert.AlertType.CONFIRMATION);
        alert.setTitle("Delete User Dialog");
        alert.setHeaderText("Delete User $ss");
        alert.setContentText("Are you sure you want to delete the selected action?");

        Optional<ButtonType> result = alert.showAndWait();
        if (result.get() == ButtonType.OK) {
            FView.showAdminOverview();
        } else {
            // ... user chose CANCEL or closed the dialog
        }

    }
}

我還嘗試過動態設置控制器,但沒有做任何更改。 我從編譯器得到的錯誤是這里的:

"C:\Program Files\Java\jdk1.8.0_121\bin\java" -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:6660,suspend=y,server=n -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Java\jdk1.8.0_121\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_121\jre\lib\rt.jar;C:\Users\agoebbel\Tempo Box\Development & PS\Eclipse-Workspaces\userMan\out\production\userMan;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 2016.3.4\lib\idea_rt.jar" org.aebian.umFrontend.Frontend
Connected to the target VM, address: '127.0.0.1:6660', transport: 'socket'
Exception in thread "JavaFX Application Thread" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
    at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1774)
    at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1657)
    at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
    at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74)
    at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:49)
    at javafx.event.Event.fireEvent(Event.java:198)
    at javafx.scene.control.MenuItem.fire(MenuItem.java:462)
    at com.sun.javafx.scene.control.skin.ContextMenuContent$MenuItemContainer.doSelect(ContextMenuContent.java:1405)
    at com.sun.javafx.scene.control.skin.ContextMenuContent$MenuItemContainer.lambda$createChildren$343(ContextMenuContent.java:1358)
    at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(CompositeEventHandler.java:218)
    at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:80)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)
    at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
    at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74)
    at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54)
    at javafx.event.Event.fireEvent(Event.java:198)
    at javafx.scene.Scene$MouseHandler.process(Scene.java:3757)
    at javafx.scene.Scene$MouseHandler.access$1500(Scene.java:3485)
    at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1762)
    at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2494)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:381)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent$354(GlassViewEventHandler.java:417)
    at com.sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(QuantumToolkit.java:389)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:416)
    at com.sun.glass.ui.View.handleMouseEvent(View.java:555)
    at com.sun.glass.ui.View.notifyMouse(View.java:937)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191)
    at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:71)
    at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:275)
    at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1769)
    ... 43 more
Caused by: java.lang.NullPointerException
    at org.aebian.umFrontend.view.FrontendView.showAbout(FrontendView.java:115)
    at org.aebian.umFrontend.view.FrontendViewController.handleButtonAction(FrontendViewController.java:39)
    ... 53 more

因此,我可以運行showLogin()方法,showAbout()方法,因此可以直接使用它而不是輸入流的錯誤。 如果您需要我的FXML文件之一:

umFrontendAbout.fxml:

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

<?import javafx.scene.paint.*?>
<?import javafx.scene.text.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.paint.Color?>
<?import javafx.scene.text.Font?>

<VBox alignment="CENTER" prefHeight="600.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.aebian.umFrontend.view.FrontendView">
    <children>
        <SplitPane focusTraversable="true" orientation="VERTICAL" prefHeight="-1.0" prefWidth="-1.0" VBox.vgrow="ALWAYS">
            <items>
                <AnchorPane prefHeight="576.0" prefWidth="328.0">
               <children>
                  <Label layoutX="272.0" layoutY="121.0" text="Java User Managment">
                     <font>
                        <Font size="24.0" />
                     </font>
                  </Label>
                  <Label layoutX="228.0" layoutY="164.0" text="A java written user management solution with mysql support" />
                  <Label layoutX="251.0" layoutY="181.0" text="© 2017 by Adrian (Simmarith) &amp; Alexander (Aebian)" />
                  <Label alignment="CENTER" layoutX="38.0" layoutY="14.0" minWidth="60.0" prefWidth="-1.0" style="&#10;" text="User Management \ About" textAlignment="CENTER" wrapText="false">
                     <font>
                        <Font size="18.0" fx:id="x1" />
                     </font>
                     <textFill>
                        <Color blue="0.624" green="0.624" red="0.624" fx:id="x2" />
                     </textFill>
                  </Label>
                  <Label layoutX="338.0" layoutY="220.0" text="aebian@aebian.org" />
               </children>
                </AnchorPane>
            </items>
        </SplitPane>
    </children>
</VBox>

我該如何解決?

我嘗試過的對我不起作用的事情:

  • 通過動態設置控制器

((控制器)loader.getController()).setPrimaryStage(primaryStage);

  • 在控制器內創建了setPrimaryStage方法

在調用方法handleButtonAction()之前,您是否已初始化rootLayout?

據我了解,您將rootLayout加載到showRoot()上,但是當應用程序到達方法handleButtonAction()時,rootLayout不會被初始化。

嘗試保存在showRoot()上初始化的rootLayout,以便可以從handleButtonAction()在showAbout上使用它;

在調試和嘗試后,我自己修復了此問題。 問題是控制器未獲取初始化值。 當方法開始運行時,僅存在一些內容。 因此,我要么需要在控制器中包含“應用程序”,要么因為JavaFX已經基於MVC,所以我可以將控制器與View類本身合並。

我做了第二種選擇,現在可以使用了。 謝謝您的幫助。

阿邊出去

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM