gpt4 book ai didi

JavaFx 事件参数类型不匹配

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:28:10 26 4
gpt4 key购买 nike

我是第一次使用 JavaFx,遇到了事件问题。我使用 SceneBuilder 构建了一个表单,并在 .fxml 和 Controller 上添加了一个事件,但它总是返回:

Exception in thread "JavaFX Application Thread" java.lang.IllegalArgumentException: argument type mismatch

FirstScene.fxml:

<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" styleClass="background" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="examlog.gui.FirstSceneController">
<stylesheets>
<URL value="@dark_style.css" />
</stylesheets>
<children>
<TableView fx:id="firstScene_tableView" layoutX="30.0" layoutY="42.0" prefHeight="287.0" prefWidth="600.0" AnchorPane.bottomAnchor="71.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="42.0">
<columns>
<TableColumn text="C1" />
<TableColumn prefWidth="70.0" text="C2" />
</columns>
</TableView>
<Label layoutX="14.0" layoutY="14.0" text="Létrehozott munkafolyamatok:" />
<Button fx:id="firstScene_newbutton" layoutX="522.0" layoutY="353.0" mnemonicParsing="false" onMouseClicked="#newButtonClick" text="ÚJ" />
</children>
</AnchorPane>

FirstSceneController.java:

public class FirstSceneController implements Initializable {

@FXML
private Button firstScene_newbutton;
@FXML
private TableView firstScene_tableView;

/**
* Initializes the controller class.
*/
@Override
public void initialize(URL url, ResourceBundle rb) {

}

@FXML
private void newButtonClick(ActionEvent event) {
System.out.println("You clicked me!");

}



}

JavaFxApplication.java:

public class JavaFXApplication extends Application {

private Stage stage;

@Override
public void start(Stage primaryStage) {
this.stage = primaryStage;
try {
FirstScene();
primaryStage.setTitle("FXML is Simple");
primaryStage.show();
} catch (IOException ex) {
Logger.getLogger(JavaFXApplication.class.getName()).log(Level.SEVERE, null, ex);
}

}

public void FirstScene() throws IOException {
AnchorPane page = (AnchorPane) FXMLLoader.load(JavaFXApplication.class.getResource("FirstScene.fxml"));
Scene scene = new Scene(page);
stage.setScene(scene);

}

}

异常:

Exception in thread "JavaFX Application Thread" java.lang.IllegalArgumentException: argument type mismatch
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:483)
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:483)
at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:275)
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1757)
at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1645)
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.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.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$ClickGenerator.postProcess(Scene.java:3437)
at javafx.scene.Scene$ClickGenerator.access$7900(Scene.java:3365)
at javafx.scene.Scene$MouseHandler.process(Scene.java:3733)
at javafx.scene.Scene$MouseHandler.access$1500(Scene.java:3452)
at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1728)
at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2461)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:348)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:273)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:382)
at com.sun.glass.ui.View.handleMouseEvent(View.java:553)
at com.sun.glass.ui.View.notifyMouse(View.java:925)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$141(WinApplication.java:102)
at com.sun.glass.ui.win.WinApplication$$Lambda$38/14271771.run(Unknown Source)
at java.lang.Thread.run(Thread.java:745)

如果有任何帮助,我将不胜感激。

最佳答案

使用 onAction="#newButtonClick",而不是 onMouseClicked

关于JavaFx 事件参数类型不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27079062/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com