List of utility methods to do InputStream Close
void | closeStreamIgnoreExpection(InputStream stream) close Stream Ignore Expection try { if (stream != null) { stream.close(); } catch (Exception e) { |
void | safeClose(InputStream is) Close object safely try { if (is != null) is.close(); } catch (Exception e) { e.printStackTrace(); |