使用多个连接同时从 FTP 服务器下载同一文件的不同部分
Simultaneously download from an FTP server different parts of the same file with multiple connection
我想从 FTP 服务器下载一个非常大的文件。
是否可以从特定偏移量开始下载?
我的用例是:
1. 传输过程中连接断开,我可以继续下载而不是重新开始吗?
2. 我可以使用不同偏移量的多个连接来同时使用多个连接来更快地下载文件吗?
我在 scala 工作,所以最好寻找提供此功能的 JVM 库。我找不到任何提供此功能的工具,甚至找不到 FTP 协议支持偏移量
之类的证据
Is it possible to start downloading from a specific offset?
可以,如果FTP服务器支持的话。1
If connection dropped during transfer, can I continue the download rather than start over?
可以,如果FTP服务器支持的话。1
Can I use multiple connections with different offset to download the file faster using multiple connections simultaneously?
可以,如果FTP服务器支持的话。1
I'm looking for JVM libs that offer this functionality.
请参阅Help Center article "What topics can I ask about here?":
- 要求我们推荐或查找书籍、工具、软件库、教程或其他off-site资源的问题是off-topic 用于堆栈溢出。
I couldn't find evidence for the FTP protocol supporting something like an offset.
如果您查看完整的 list of FTP commands,REST
命令 (从指定点重新开始传输) 似乎正确。
1) 你可以使用FEAT
命令询问FTP服务器它支持什么(获取服务器实现的功能列表).
我想从 FTP 服务器下载一个非常大的文件。 是否可以从特定偏移量开始下载? 我的用例是: 1. 传输过程中连接断开,我可以继续下载而不是重新开始吗? 2. 我可以使用不同偏移量的多个连接来同时使用多个连接来更快地下载文件吗?
我在 scala 工作,所以最好寻找提供此功能的 JVM 库。我找不到任何提供此功能的工具,甚至找不到 FTP 协议支持偏移量
之类的证据Is it possible to start downloading from a specific offset?
可以,如果FTP服务器支持的话。1
If connection dropped during transfer, can I continue the download rather than start over?
可以,如果FTP服务器支持的话。1
Can I use multiple connections with different offset to download the file faster using multiple connections simultaneously?
可以,如果FTP服务器支持的话。1
I'm looking for JVM libs that offer this functionality.
请参阅Help Center article "What topics can I ask about here?":
- 要求我们推荐或查找书籍、工具、软件库、教程或其他off-site资源的问题是off-topic 用于堆栈溢出。
I couldn't find evidence for the FTP protocol supporting something like an offset.
如果您查看完整的 list of FTP commands,REST
命令 (从指定点重新开始传输) 似乎正确。
1) 你可以使用FEAT
命令询问FTP服务器它支持什么(获取服务器实现的功能列表).