首页 > 开发 > 综合 > 正文

用VBA代码下载网络上的文件

2024-07-21 02:12:33
字体:
来源:转载
供稿:网友
前几天与mvp老k一起讨论如何从网络中下载一个文件到本机,现将代码帖上来与大家分享.另外我看到张志前段时间需要这个代码,不知道现在仍需要.代码适用于vba,vb,vbs。

dim h, s
set h = createobject("microsoft.xmlhttp")
h.open "get", "http://www.yt-e.com/a.exe", false?? '网络中的文件url
h.send
set s = createobject("adodb.stream")
s.type = 1
s.open
s.write h.responsebody
s.savetofile "c:/a.exe", 2? '本地保存文件名
s.close
,欢迎访问网页设计爱好者web开发。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表