Here you can find the source of createImageIcon(String iconFile)
public static ImageIcon createImageIcon(String iconFile)
//package com.java2s; import javax.swing.ImageIcon; public class Main { /** Returns an ImageIcon, or null if the iconFile is invalid. */ public static ImageIcon createImageIcon(String iconFile) { if (iconFile != null) { return new ImageIcon(iconFile); } else {//from www. ja v a2 s .c o m System.err.println("Couldn't find file: " + iconFile); return null; } } }