1、点击网络传送带,在网络传送带窗口中,点击设置。
2、在设置窗口中,点击下载,在下载窗口中,将继续下载即使服务器不支持续传勾选上。
3、点击确定即可开启xdm断点续传。
1.HTTPbegintryIdHTTP.Request.ContentRangeStart:=
2
//设定断点续传的开始位置
IdHTTP.Request.ContentRangeEnd
:=
3
//设置传输的结束位置,为了以最快的速度返回结果,所以设定请求的总长度为1
if
IdHTTP.Response.ResponseCode
=
206
then
//根据返回代码判断是否支持断点续传
ShowMessage('该FTP站点支持断点续传。')elseShowMessage('该FTP站点不支持断点续传。')exceptendendvariValue:
Integerbeginwith
IdFTP
dotryif
Connected
then
Disconnect
Username
:=
'anonymous'
//这是FTP的用户名
Password
:=
'test@ftp.com'
//只是FTP的密码
Host
:=
'ftp.globalscape.com'
Port
:=
21ConnectexceptexitendtryiValue
:=
IdFTP.SendCmd('REST
1')
//发送指令判断是否支持断点续传
ShowMessage('该FTP站点支持断点续传。')elseShowMessage('该FTP站点不支持断点续传。')exceptendend
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)