首页 > 开发 > 综合 > 正文

一段Get取远程序图片并保存到本地的代码

2024-07-21 02:03:52
字体:
来源:转载
供稿:网友

<%
Function GetWebData(byval strUrl)
dim curlpath
dim Retrieval
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", strUrl, False, "", ""
.Send
GetWebData =.ResponseBody
End With
Set Retrieval = Nothing
End Function

sub SaveImg(FileName,Data)
set ads=server.CreateObject("Adodb.Stream")
with ads
.Type=1
.Open
.Write Data
.SaveToFile server.MapPath(FileName),2
.Cancel()
.Close()
end with
set ads=nothing
end sub

dim imgurl
dim aryFileName
imgurl="http://bbs.dvbbs.net/images/LOGO.GIF" '图片远程地址。
aryFileName=split(imgUrl,"/")
call SaveImg(aryFileName(ubound(aryFileName)),GetWebData(imgurl))
%>

本程序在 win2K server/IIS5.0/IE6 下测试成功。

54NB盟(原wc公司)荣誉出品(2003-09-1)
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表