Apache commons IO 官网:
API doc:
http://commons.apache.org/io/api-release/index.html
void org.apache.commons.io.IOUtils.closeQuietly(InputStream input)
Unconditionally close an InputStream
.
Equivalent to InputStream.close()
, except any exceptions will be ignored. This is typically used in finally blocks.