public class ImageTools {protected ImageTools() {}public static Image getImage(String str){Image img=null;try {img = Image.createImage(str);}catch (Exception ex) {System.out.println(ex);}finally{return img;}}}