Java tutorial
//package com.java2s; //License from project: Apache License import java.io.Closeable; public class Main { public static void close(Closeable closeable) { if (closeable != null) { try { closeable.close(); } catch (Exception e) { e.printStackTrace(); } } } }