When we are running any java application that time one java icon display on the taskbar like
Now I want to change the java icon to another icon
then how can I change that icon?
Currently I am using JavaFX.
When we are running any java application that time one java icon display on the taskbar like
Now I want to change the java icon to another icon
then how can I change that icon?
Currently I am using JavaFX.
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"));