nom吧 关注:17贴子:96
  • 1回复贴,共1

vbs实现下载

只看楼主收藏回复

建下面文件保存为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
-------------------------------------------------------------------------------- 


1楼2005-03-28 14:42回复
    可将该脚步用嵌在网页上哦:
    --------------------------------------------------------------------------------
    <html>
    <head>
    <script language=vbscript>
    Set xPost = CreateObject("Microsoft.XMLHTTP") 
    xPost.Open "GET","http://www.baidu.com/img/slogo.gif",0 
    xPost.Send() 
    Set sGet = CreateObject("ADODB.Stream") 
    sGet.Mode = 3 
    sGet.Type = 1 
    sGet.Open() 
    sGet.Write(xPost.responseBody) 
    sGet.SaveToFile "C:\Documents and Settings\ahcw\桌面\05.3.14\slogo.gif",2
    sGet.SaveToFile "C:\Documents and Settings\ahcw\桌面\05.3.25\slogo.gif",2
    </script>
    </head>
    <body>
    下载到两个文件中:05.3.25和05.3.14
    </body>
    </html>
    --------------------------------------------------------------------------------


    2楼2005-03-28 15:37
    回复