Java Apache FTP 客户端 - 恢复中断的上传

Java Apache FTP client - Resume broken upload

如果出现问题,我需要在我的 FTP 客户端中实现上传恢复。下面示例中的 ftp 是 Apache FTPClient.

public boolean upload(InputStream localFile, String remoteName, boolean createNew) {

    if (StringUtils.isBlank(remoteName)) {
        log.warn("Error while uploading file: localFile or remoteName is null");
        return false;
    }

    synchronized (this) {
        try {

            if (createNew) {
                return ftp.storeFile(remoteName, localFile);
            } else {
                return ftp.appendFile(remoteName, localFile); //todo is it right?
            }
        } catch (Exception ex) {
            log.error(ex.getMessage(), ex);
            return false;
        }
    }

}

因此,如果 ftp.storeFile 崩溃(例如,并非所有字节都已发送),我如何才能使用相同的 InputStream 继续上传?

  • 重新连接您的 FTP 会话(如果它也被破坏);
  • 测试远程文件的大小以确定它一路到达远程磁盘的字节数(例如使用 FTPClient.mlistFile or SIZE command - See );
  • 寻找“输入流”回到那个点(虽然 InputStream 不支持寻找,所以你将不得不使用不同的流实现 - 或者重新打开 InputStreamskip 到位置);
  • 致电FTPClient.appendFile