Here you can find the source of closeStream(final Closeable stream)
private static void closeStream(final Closeable stream) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { private static void closeStream(final Closeable stream) throws IOException { stream.close();/* w w w.ja v a2 s. c om*/ } }