Here you can find the source of getImageIcon(String filename)
public static ImageIcon getImageIcon(String filename)
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { public static ImageIcon getImageIcon(String filename) { return new ImageIcon(ClassLoader.getSystemResource("resources/" + filename));/*from w w w .j a v a 2 s .c o m*/ } }