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