2016-02-25 44 views
0

我试着去得到一个gridPane(他们是按钮)在我的控制器类的所有成员改变他们的文字,但我发现了异常,您可以在下面看到它:获得按钮在gridPane和使用JavaFX

Exception in Application start methodjava.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:497) 
at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389) 
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328) 
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:497) 
at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767) 
Caused by: java.lang.RuntimeException: Exception in Application start method 
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917) 
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$152(LauncherImpl.java:182) 
    at com.sun.javafx.application.LauncherImpl$$Lambda$51/1263764.run(Unknown Source) 
    at java.lang.Thread.run(Thread.java:745) 
Caused by: javafx.fxml.LoadException: 
file:/C:/Users/Family/Documents/NetBeansProjects/FarsiCallender/dist/run1583526066/FarsiCallender.jar!/farsicallender/FXMLDocument.fxml 
at javafx.fxml.FXMLLoader.constructLoadException(FXMLLoader.java:2605) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2583) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2445) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3218) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3179) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3152) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3128) 
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3108) 
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:3101) 
at farsicallender.FarsiCallender.start(FarsiCallender.java:29) 
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$159(LauncherImpl.java:863) 
at com.sun.javafx.application.LauncherImpl$$Lambda$54/4239053.run(Unknown Source) 
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$172(PlatformImpl.java:326) 
at com.sun.javafx.application.PlatformImpl$$Lambda$47/20085625.run(Unknown Source) 
at com.sun.javafx.application.PlatformImpl.lambda$null$170(PlatformImpl.java:295) 
at com.sun.javafx.application.PlatformImpl$$Lambda$49/3796086.run(Unknown Source) 
at java.security.AccessController.doPrivileged(Native Method) 
at com.sun.javafx.application.PlatformImpl.lambda$runLater$171(PlatformImpl.java:294) 
at com.sun.javafx.application.PlatformImpl$$Lambda$48/2900468.run(Unknown Source) 
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) 
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) 
at com.sun.glass.ui.win.WinApplication.lambda$null$145(WinApplication.java:101) 
at com.sun.glass.ui.win.WinApplication$$Lambda$37/17230114.run(Unknown Source) 
... 1 more 
Caused by: java.lang.NullPointerException 
    at farsicallender.FXMLDocumentController.setDays(FXMLDocumentController.java:249) 
    at farsicallender.FXMLDocumentController.initialize(FXMLDocumentController.java:181) 
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2552) 
    ... 22 more 
Exception running application farsicallender.FarsiCallender 
Java Result: 1 

此异常来自于我的这部分代码,检查我的代码之前,你要知道,我有一个gridPane(6 * 7),这是我的代码:

for (int i = 0; i < 6; i++) { 
    for (int j = 0; j < 7; j++) { 
     for (Node node : grid.getChildren()) { 
      if (grid.getRowIndex(node) == i && grid.getColumnIndex(node) == j) { 
        Button b = (Button)node; 
        b.setText(ar[i][j]+""); 
        System.out.println("z:" + i+" "+j); 
        break; 
      } 
     } 
    } 
} 

行249:

if (grid.getRowIndex(node) == i && grid.getColumnIndex(node) == j) { 
+0

你能告诉我们哪一行是249行吗? –

+0

在这里你是...(在我的问题结束时) –

+0

不是你的IDE给你这条线的警告吗? –

回答

1

另外,您不应该从非静态上下文中调用静态方法。您的IDE应该警告您这一点。但是,你应该使用

GridPane.getRowIndex(node) 

grid.getRowIndex(node) 


的方法GridPane.getRowIndex(Node)GridPane.getColumnIndex(node)返回的包装Integer对象,而不是原始int。因此,当您使用==通过身份进行比较时,您隐式使用拆箱。换句话说,你的代码就相当于

if (GridPane.getRowIndex(node).intValue() == i 
    && GridPane.getColumnIndex(node).intValue() == j) { ... } 

如果有添加到您的网格窗格中没有规定行索引和列索引的任何节点,然后GridPane.getRowIndex(...)GridPane.getColumnIndex(...)将返回null,所以你会隐式地试图调用intValue()上的空引用,导致空指针异常。请注意,如果您调用了grid.setGridLinesVisible(true);,则会导致GridPane添加一个没有设置行索引或列索引的节点。

所以,快速修复,这是做一个空检查:

Integer rowIndex = GridPane.getRowIndex(node); 
Integer columnIndex = GridPane.getColumnIndex(node); 

if (rowIndex != null && rowIndex.intValue() == i 
    && columnIndex != null && columnIndex.intValue() == j) { 

    // ... 
} 

我可能更愿意组织代码,以便按钮被保存在一个数组,这样你就可以在没有所有迭代访问它们,但我想这只是一个风格问题。

+0

谢谢。此代码适用于除第一行和第一列以外的每个按钮。 –

+0

也许行索引和列索引对于第一行和第一列是空的?我认为这会默认他们为零...我只是确保你正确地分配行索引和列索引到每个按钮。或者,if(rowIndex == null){rowIndex = 0;} if(columnIndex == null){columnIndex = 0;}'然后只是if(rowIndex.intValue()== i && columnIndex.intValue )== j){...}'。 –