下载文件的特定位

Download specific bits of a file

是否有任何网络协议可以帮助下载文件的特定位?此外,与此问题有任何关系,并在浏览器中暂停下载。

要下载单个文件,您需要一个实用程序,例如 curl (curl.haxx.se)

curl -r 0-10000000 -o Output.bin http://adddress-to-the.file

这会将前十兆字节下载到 Output.bin