InputStream in = cnn.getInputStream();
OutputStream out = Files.newOutputStream(destFile);
long length = ByteStreams.copy(in, out);
logger.debug("Copied {} in {}: {} bytes", url, destFile, length);
} catch (IOException e) {
throw new RuntimeIOException("Exception downloading the content of '" + url + "' to '" + destFile + "'", e);
}
}