建下面文件保存为down.vbs
--------------------------------------------------------------------------------
Set xPost = CreateObject("Microsoft.XMLHTTP")
xPost.Open "GET","http://magic.qq.com/cgi-bin/cgi_flash_preview?face_id=668&diytype=0",0 '下载路径+文件名
xPost.Send()
Set sGet = CreateObject("ADODB.Stream")
sGet.Mode = 3
sGet.Type = 1
sGet.Open()
sGet.Write(xPost.responseBody)
sGet.SaveToFile "668.swf",2 '将文件改名为668.swf,也可以用目录,如:./flash/668.swf
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Set xPost = CreateObject("Microsoft.XMLHTTP")
xPost.Open "GET","http://magic.qq.com/cgi-bin/cgi_flash_preview?face_id=668&diytype=0",0 '下载路径+文件名
xPost.Send()
Set sGet = CreateObject("ADODB.Stream")
sGet.Mode = 3
sGet.Type = 1
sGet.Open()
sGet.Write(xPost.responseBody)
sGet.SaveToFile "668.swf",2 '将文件改名为668.swf,也可以用目录,如:./flash/668.swf
--------------------------------------------------------------------------------