Here you can find the source of closeQuitely(Closeable c)
public static void closeQuitely(Closeable c)
//package com.java2s; import java.io.Closeable; import java.io.IOException; public class Main { public static void closeQuitely(Closeable c) { if (c == null) return; try {//from www . ja v a 2 s .c o m c.close(); } catch (IOException e) { // ignore } } }