Speed up Apache Commons FTPClient transfer

前端 未结 4 1596
你的背包
你的背包 2021-01-04 10:33

I am using Apache Commons FTPClient to upload large files, but the transfer speed is only a fraction of transfer speed using WinSCP via FTP. How can I speed up my transfer?<

4条回答
  •  感情败类
    2021-01-04 11:14

    It would be better if you use ftp.setbuffersize(0); if you use 0 as your buffersize , it will take as infinite buffer size. obviously ur transaction will get speeded up... I personally experienced it.. all the best... :)

提交回复
热议问题