1

When we are running any java application that time one java icon display on the taskbar like enter image description here

Now I want to change the java icon to another icon
then how can I change that icon?
Currently I am using JavaFX.

vijayk
  • 2,633
  • 14
  • 38
  • 59

1 Answers1

0

I am not sure I followed what you want, but to me it looks like you want the icon of the stage to be changed. Try the code below:

yourStage.getIcons().add(new Image("my_icon.png"));
Aspirant
  • 1,934
  • 4
  • 25
  • 44