这是加载第二个窗体的代码
public void ToLogin() throws IOException {
Message msg = new Message();
msg.show("登录失败");
}这是第二个窗体的显示代码
public void show(String message) throws IOException {
Parent root = FXMLLoader.load(Message.class.getResource("Message.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
label.setText(message);//此处抛出空指针异常
stage.initStyle(StageStyle.TRANSPARENT);
stage.show();
}这是Message.fxml文件
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP是世界上最好的语言