Apache commons-net FTP - 将文件上传到安全FTP IIS

时间:2011-12-21 14:21:12

标签: java ftp ftp-client apache-commons-net

我正在尝试使用Apache commons-net FTP库将大文件(> 100Mb)上传到Secure FTP Server IIS。

这是我的代码:

try{
ftpClient = new FTPSClient("TLS", false);
        this.ftpClient.setDataTimeout(6000000);
        this.ftpClient.setConnectTimeout(6000000);
        ftpClient.connect(host, port);
        ftpClient.login(userName, password);
            ftpClient.enterLocalPassiveMode();
         if (ftpClient.getReplyCode() == 230){
               ftpClient.sendCommand("OPTS UTF8 ON");
               ftpClient.execPBSZ(0);
               ftpClient.execPROT("P");
         else{
             throw new Exception("connection failed.....");}
         ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
        InputStream is= new FileInputStream("C:\\movie.avi");
         ftpClient.setUseEPSVwithIPv4(true);
             ftpClient.storeFile(remotePath, is);
         is.close();
       }
         catch (SocketException e) {
    e.printStackTrace();
        } catch (IOException e) {
    e.printStackTrace();
        }

无法上传大于19Mb的文件。 storeFile方法使用空StackTrace抛出IOException。您可以在下面看到IOException变量:

   e    CopyStreamException  (id=39)    
    cause   CopyStreamException  (id=39)    
    detailMessage   "IOException caught while copying." (id=45) 
    ioException SocketException  (id=46)    
        cause   SocketException  (id=46)    
        detailMessage   "Connection reset by peer: socket write error" (id=50)  
        stackTrace  null    
    stackTrace  null    
    totalBytesTransferred   19084288    

实际上它的行为方式如下:

1)当我开始上传时,创建了零大小的文件,而我上传的文件大小仍然为零,当发生异常时,这个空文件被FTP删除。

2)有趣的是,FileZila也无法上传这些文件,但其限制大小为70Mb。

我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

好。遗憾的是,防火墙引起的问题是,5分钟后关闭数据端口。