我正在尝试从 FTP 服务器(通过 HTTP 代理)下载 tar.gz 文件。虽然已经处理了通过代理连接的麻烦(我能够从 FTP 站点读取常规文件),但我能够将文件下载到我的桌面(显然是开发人员机器)。但是当我尝试膨胀该文件时,我遇到了一个异常。以下是我的代码片段
if (CollectionUtils.isNotEmpty(filesList)) {
for (String fileName : filesList) {
if (fileName.endsWith(getArchiveFileType())) {
// File is a tar.gz file.
// Download this file to a local directory
FtpDownloadMethod downloadMethod = new FtpDownloadMethod();
OutputStream output = new FileOutputStream(getOutputDirectory() + fileName);
downloadMethod.setFileTransferMode(FTPClient.COMPRESSED_TRANSFER_MODE);
downloadMethod.setOutput(output);
downloadMethod.setUri(fileName);
isDownloaded = isDownloaded && getServiceProxy().executeMethod(downloadMethod).isSuccess();
output.close();
}
}
}
这是进行传输的实际方法。
String uri; //method arguements
OutputStream output; //method arguements
DefaultFtpResponse response = null;
try {
response = new DefaultFtpResponse();
boolean success = false;
if (StringUtils.isBlank(getUri())) {
response.setStatusCode(FTPReply.FILE_UNAVAILABLE);
} else {
aFtpClient.connect();
aFtpClient.enterLocalPassiveMode();
aFtpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
aFtpClient.setFileTransferMode(getFileTransferMode());
success = aFtpClient.retrieveFile(uri, output);
response.setSuccess(success);
response.setStatusCode(FTPReply.COMMAND_OK);
}
} catch (Exception exp) {
LOGGER.error(exp);
}
return response;
此代码创建一个文件,我可以看到在所需的输出文件夹中创建了一个文件。下载后,当我尝试解压缩下载的文件时,我看到了这个错误。
java.util.zip.ZipException: oversubscribed literal/length tree
我也尝试了 BLOCK_TRANSFERR_MODE 和 BINARY_TRANSFER_MODE。