2017-02-20 106 views
0

我試圖在按下按鈕時切換佈局。我嘗試了很多東西,也在這裏搜索了stackoverflow,但給出的答案似乎不是我的申請人。JavaFX FXML場景切換不起作用[NullPointerException]

我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()這是工作的罰款。如果我試圖通過按鈕來運行它,它會失敗。同樣適用於。如果我用第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="[email protected]" /> 
       </children> 
       </AnchorPane> 
      </items> 
     </SplitPane> 
    </children> 
</VBox> 

我該如何解決這個問題?通過

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

  • 組控制器dynamiclly;:

    事情我想,是不是爲我工作

  • 創建控制器
+0

你爲什麼期望在'FrontendViewController'中創建的'FrontendView'實例中初始化'rootLayout'?它通過'start'方法初始化(有效地),該方法在啓動應用程序時爲您創建的實例上調用。這只是錯誤的結構:你不應該自己創建一個'Application'類的實例,Application類除了啓動應用程序之外不應該做任何事情。您需要重構代碼,以使其適合FX應用程序生命週期。 –

回答

0

您是否調用方法handleButtonAction()之前初始化rootLayout內setPrimaryStage方法?

從我能理解的你加載showRoot()的rootLayout,但當應用程序到達方法handleButtonAction()rootLayout它不會被初始化。

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

+0

我到底該怎麼做?我嘗試了showRoot();方法this.rootLayout = rootLayout;並試圖爲此創造一個吸氣。 – Aebian

+0

對不起,我沒有很好地閱讀代碼。您是否嘗試在FrontendViewController.class上重命名BorderPane bPane = FView.getBorderPane();' 至 'BorderPane rootLayout = FView.getBorderPane();並編輯showAbout()方法: 'this.rootLayout。 setCenter(vDefault);' –

+0

我做了並相應地更新了代碼此外stacktrace保持不變。嗯,我的猜測是,showAbout()在showRoot()之前加載,但我不知道如果它是真的 – Aebian

0

我在調試和嘗試後自己修復了這個問題。 問題是,控制器沒有獲得初始化值。當方法啓動已經運行時存在。因此,我需要在我的控制器中有「應用程序」,或者因爲JavaFX已經是基於MVC的,我可以將我的控制器與View類本身合併。

我做了第二個選項,現在就開始工作。 感謝您的幫助。

Aebian out。