回 帖 发 新 帖 刷新版面

主题:[原创]VB下载网上文件代码(有进度条显示)

'添加 internet transfer control 6.0 和 windows commom controls 6.0
'form代码:

Private Sub cmdGET_Click()
StartDownLoad txtURL
End Sub

Private Sub Form_Load()
savefile.Text = App.Path
End Sub

Private Sub StartDownLoad(ByVal Geturl As String)
Dim spo%, filename$
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
If Not fso.FolderExists(App.Path & "\download") Then Set f = fso.CreateFolder(App.Path & "\download")
spo = InStrRev(Geturl, "/")
filename = Right(Geturl, Len(Geturl) - spo) '获取文件名
savefile.Text = App.Path & "\download\" & filename
Inet1.Execute Geturl, "get"   '开始下载
End Sub

Private Sub Inet1_StateChanged(ByVal State As Integer)
   'State = 12 时,用 GetChunk 方法检索服务器的响应。
   Dim vtData() As Byte
   Select Case State
   '...没有列举其它情况。
   Case icError '11
      '出现错误时,返回 ResponseCode 和 ResponseInfo。
      vtData = Inet1.ResponseCode & ":" & Inet1.ResponseInfo
   Case icResponseCompleted ' 12
      Dim bDone As Boolean: bDone = False
      '取得第一个块。
      vtData() = Inet1.GetChunk(1024, 1)
      DoEvents
      Open savefile.Text For Binary Access Write As #1     '设置保存路径文件后开始保存
      '获取下载文件长度
      If Len(Inet1.GetHeader("Content-Length")) > 0 Then ProgressBar1.Max = CLng(Inet1.GetHeader("Content-Length"))
      
      '循环分块下载
      Do While Not bDone
         Put #1, Loc(1) + 1, vtData()
         vtData() = Inet1.GetChunk(1024, 1)
         DoEvents
         ProgressBar1.Value = Loc(1)   '设置进度条长度
         If Loc(1) >= ProgressBar1.Max Then bDone = True
      Loop
       
      Close #1
      MsgBox "下载完成", vbInformation, "通知"
   End Select
   
End Sub

回复列表 (共48个回复)

11 楼

原来如此!哈哈~~!!这个程序正好拿来学习!谢!

12 楼

楼主可否告知下载的文件如何保存到access数据库中??

13 楼

不知楼主可否考虑过多线程下载,小弟想学习学习

14 楼

保存到ACCESS通过RS(字段名).AppendChunk s()即可

15 楼

小弟刚刚学VB不久,楼主可否说的详细一点,在此先谢谢了!比如到http://fc.zjol.com.cn/zjfc/asp_4_1.asp下载开奖数据

16 楼

Private Sub cmdGET_Click()
StartDownLoad txtURL
End Sub

txtURL=文件所在地址,不能直接下数据

17 楼

txtURL=http://fc.zjol.com.cn/zjfc/asp_4_1.asp
下载网页上全部数据,再提取其中有用的数据显示出来,就是不能下载每一页的数据,你有没有办法指点一下?

18 楼

提取数据比较麻烦的

19 楼

感觉不怎么样    呵呵    断点下载那还有点新鲜感

20 楼


你能用C#
做一个吗

我来回复

您尚未登录,请登录后再回复。点此登录或注册