Exemplo n.º 1
0
 public void copy(InputStream is, OutputStream os) {
   try {
     copyNoClose(is, os);
   } finally {
     closeQuietly(is);
     closeQuietly(os);
   }
 }