Here you can find the source of getImageIcon(String resource)
public static ImageIcon getImageIcon(String resource)
//package com.java2s; //License from project: Apache License import java.net.URL; import javax.swing.ImageIcon; public class Main { public static ImageIcon getImageIcon(String resource) { URL imageURL = ClassLoader.getSystemResource(resource); ImageIcon image = new ImageIcon(imageURL); return image; }//from w ww . j a va 2 s. co m }