Here you can find the source of closeEL(ImageInputStream iis)
public static void closeEL(ImageInputStream iis)
//package com.java2s; //License from project: LGPL import javax.imageio.stream.ImageInputStream; public class Main { public static void closeEL(ImageInputStream iis) { try {//from ww w .ja v a 2s.c o m if (iis != null) iis.close(); } catch (Throwable t) { } } }