Here you can find the source of safeClose(InputStream is)
Parameter | Description |
---|---|
is | InputStream |
// ////////////////////////////////////////////////////// public static void safeClose(InputStream is)
//package com.java2s; import java.io.*; public class Main { /**/*from w ww. ja v a 2 s .co m*/ * Close object safely * * @param is * InputStream */ // ////////////////////////////////////////////////////// public static void safeClose(InputStream is) { try { if (is != null) is.close(); } catch (Exception e) { e.printStackTrace(); } } /** * Close object safely * * @param os * OutputStream */ // ////////////////////////////////////////////////////// public static void safeClose(OutputStream os) { try { if (os != null) os.close(); } catch (Exception e) { e.printStackTrace(); } } /** * Close object safely * * @param fl * RandomAccessFile */ // ////////////////////////////////////////////////////// public static void safeClose(RandomAccessFile fl) { try { if (fl != null) fl.close(); } catch (Exception e) { e.printStackTrace(); } } }