I am trying to set an icon for my javaFX application, I tried:
stage.getIcons().add(new Image("/path/fileName.png"));
and
stage.getIcons().add(new Image(<className>.class.getResourceAsStream("/path/fileName.png")));
but both of the options only result in changing my icon in window, not the dock icon. Is there something else I can try?
Thank you
Java 8, OS X El Capitan Version 10.11.4