2015-04-08 61 views
13

我在運行一個簡單的Hello World應用程序時遇到了一些問題。它拋出以下錯誤:加載FXML時解析「onAction」時出錯

Exception in Application start method 
Exception in thread "main" 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$2/1329552164.run(Unknown Source) 
    at java.lang.Thread.run(Thread.java:745) 
Caused by: javafx.fxml.LoadException: Error resolving onAction='#printHello', either the event handler is not in the Namespace or there is an error in the script. 
/home/willi/java/IdeaProjects/JavaFXApp/out/production/JavaFXApp/sample/sample.fxml:23 

    at javafx.fxml.FXMLLoader.constructLoadException(FXMLLoader.java:2601) 
    at javafx.fxml.FXMLLoader.access$100(FXMLLoader.java:104) 
    at javafx.fxml.FXMLLoader$Element.processEventHandlerAttributes(FXMLLoader.java:606) 
    at javafx.fxml.FXMLLoader$ValueElement.processEndElement(FXMLLoader.java:766) 
    at javafx.fxml.FXMLLoader.processEndElement(FXMLLoader.java:2827) 
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2536) 
    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 sample.Main.start(Main.java:13) 
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$159(LauncherImpl.java:863) 
    at com.sun.javafx.application.LauncherImpl$$Lambda$57/2085742749.run(Unknown Source) 
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$172(PlatformImpl.java:326) 
    at com.sun.javafx.application.PlatformImpl$$Lambda$52/738441956.run(Unknown Source) 
    at com.sun.javafx.application.PlatformImpl.lambda$null$170(PlatformImpl.java:295) 
    at com.sun.javafx.application.PlatformImpl$$Lambda$55/689939224.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$53/1382865734.run(Unknown Source) 
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) 
    at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method) 
    at com.sun.glass.ui.gtk.GtkApplication.lambda$null$48(GtkApplication.java:139) 
    at com.sun.glass.ui.gtk.GtkApplication$$Lambda$43/704249306.run(Unknown Source) 
    ... 1 more 

我Controller.java文件在此定義printHelloprintWorld的方法,我想打電話給他們時,我按他們的相應按鈕。代碼如下: 包樣本;

import javafx.fxml.FXML; 
import javafx.scene.control.Button; 
import java.awt.event.ActionEvent; 

public class Controller { 

    @FXML 
    private Button helloButton; 

    @FXML 
    private Button worldButton; 

    @FXML 
    private void printHello(ActionEvent e){ 
     System.out.println("Hello"); 
    } 

    @FXML 
    private void printWorld(ActionEvent f){ 
     System.out.println("World"); 
    } 
} 

`在我的fxml文件中,我定義了兩個按鈕。他們的代碼如下:

<Button fx:id="helloButton" layoutX="46.0" layoutY="87.0" mnemonicParsing="false" onAction="#printHello" text="Hello" /> 

<Button fx:id="worldButton" layoutX="97.0" layoutY="87.0" mnemonicParsing="false" onAction="#printWorld" text="World" /> 

爲什麼我的代碼拋出這個錯誤?

對不起,可怕的格式,這是我第一次發佈。

+0

請發表你想運行的實際代碼。 – mjuarez

+0

這應該工作。你能確定你在fxml中提供了正確的控制器類名嗎?或者,在這裏發佈完整的fxml以及Controller的軟件包名稱。 – ItachiUchiha

回答

39

您在控制器類中導入了錯誤的ActionEvent

import java.awt.event.ActionEvent; 

糾正它

import javafx.event.ActionEvent;