码迷,mamicode.com
首页 > 其他好文 > 详细

保存远程图片到本地文件夹!

时间:2014-09-13 18:30:05      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   文件   div   sp   cti   

<%
Function saveimg(url)
	savepath="upload"
	temp=split(url,".")
	‘以下是用时间与随机数重命名文件名
	randomize
	ranNum=int(90000*rnd)+10000‘随机数
	filename=year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&"."&temp(ubound(temp))‘时间与随机数组合命名图片名称
	set xmlhttp=server.createobject("Microsoft.XMLHTTP")
	xmlhttp.open "get",url,false
	xmlhttp.send
	img=xmlhttp.ResponseBody
	set xmlhttp=nothing
	set objAdostream=server.createobject("ADODB.Stream")
	objAdostream.Open()
	objAdostream.type=1
	objAdostream.Write(img)
	objAdostream.SaveToFile(server.mappath(savepath&"\"&filename))
	objAdostream.SetEOS
	set objAdostream=nothing
	saveimg=filename
End Function
%>

<%
call saveimg("http://www.baidu.com/img/bd_logo1.png")
%>

  

保存远程图片到本地文件夹!

标签:blog   http   io   os   ar   文件   div   sp   cti   

原文地址:http://www.cnblogs.com/lyz8/p/3970024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!