inputStream = new BufferedInputStream(new FileInputStream(dataFile));
outputStream = new BufferedOutputStream(new FileOutputStream(tempUploadFile));
String contentEncoding = null;
if (gzipFile) {
inputStream = new GZipDeflatingInputStream(inputStream);
contentEncoding = "gzip";
s3Object.addMetadata(Constants.METADATA_JETS3T_COMPRESSED, "gzip");
actionText += "Compressing";
}
if (encryptionUtil != null) {