Here you can find the source of forceClose(Closeable stream)
public static void forceClose(Closeable stream)
//package com.java2s; //License from project: Apache License import java.io.Closeable; public class Main { public static void forceClose(Closeable stream) { if (stream != null) { try { stream.close();//from ww w . j a va2s .c om } catch (Throwable t) { } } } }