這是載入第二個窗體的程式碼
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檔
PHP是世界上最好的语言