Here you can find the source of createImageIcon(String imgFile)
public static ImageIcon createImageIcon(String imgFile)
//package com.java2s; //License from project: Open Source License import java.net.*; import javax.swing.*; public class Main { /**//from w w w . j a v a 2s. c o m * create image icon */ public static ImageIcon createImageIcon(String imgFile) { URL imgUrl = ClassLoader.getSystemClassLoader() .getResource(imgFile); if (imgUrl == null) { return null; } return new ImageIcon(imgUrl); } }