我想在我的应用程序调试中得到一个控制台输出,但无论我在哪里放println方法控制台都不打印任何东西。例如,我想得到"嗨"点击"播放"按钮,除println之外的所有内容都将正常调用。
@FXML
protected void handlePlayButton(ActionEvent event) {
System.out.println("hi!");
filePath = cTable.getSelectionModel().getSelectedItem().getFilePath();
index = cTable.getSelectionModel().getSelectedIndex();
player = new Play();
player.player(filePath);
}
答案 0 :(得分:0)
stdout指向的位置可能存在问题。您是在IDE中运行它还是已将其重定向到代码中的其他位置?