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,533
  • 10
  • 33
  • 56

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,914
  • 3
  • 25
  • 44