JavaFX Application Icon

后端 未结 17 1681
滥情空心
滥情空心 2020-11-28 02:25

Is it possible to change the application icon using JavaFX, or does it have to be done using Swing?

17条回答
  •  死守一世寂寞
    2020-11-28 02:47

    stage.getIcons().add(new Image(.class.getResourceAsStream("/icon.png")));
    

    If your icon.png is in resources dir and remember to put a '/' before otherwise it will not work

提交回复
热议问题