Here you can find the source of closeQuietly(InputStream c)
public static void closeQuietly(InputStream c)
//package com.java2s; //License from project: Apache License import java.io.InputStream; public class Main { public static void closeQuietly(InputStream c) { try {/*from w w w. j ava 2 s . c o m*/ c.close(); } catch (Exception e) { } } }