Copies one stream into the other.
(InputStream input, OutputStream output)
| 165 | |
| 166 | /** Copies one stream into the other. */ |
| 167 | private static void copy(InputStream input, OutputStream output) throws IOException { |
| 168 | IOUtils.copy(input, output); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Unzips a directory to a folder. |