Stop using the default frame icon in Java

Stop doing this:
frameicon.png

One line of code fixes this:

frame.setIconImage(
new javax.swing.ImageIcon(
getClass().getResource("/ClassPath/icon.png")).getImage());

Leave a Comment