程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP保存遠程文件到本地

ASP保存遠程文件到本地

編輯:關於ASP編程

     <%

    Function SaveRemoteFile(LocalFileName,RemoteFileUrl)
        SaveRemoteFile=True
    dim Ads,Retrieval,GetRemoteData
    Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
    With Retrieval
       .Open "Get", RemoteFileUrl, False, "", ""
       .Send
            If .Readystate<>4 then
                SaveRemoteFile=False
                Exit Function
            End If
       GetRemoteData = .ResponseBody
    End With
    Set Retrieval = Nothing
    Set Ads = Server.CreateObject("Adodb.Stream")
    With Ads
       .Type = 1
       .Open
       .Write GetRemoteData
       .SaveToFile server.MapPath(LocalFileName),2
       .Cancel()
       .Close()
    End With
    Set Ads=nothing
    End Function
    %>

    <%
    '以下為調用示例:
    remoteurl="http://www.uyux.cn/logo.gif"'遠程文件名(絕對全路徑)
    localfile=Replace(Replace(Replace(Now(),"-","")," ",""),":","")&Right(remoteurl,4)'本機文件名(可自定義)
    If SaveRemoteFile(localfile,remoteurl)=True Then
    Response.Write("成功保存:"&localfile)
    End If
    %>

    -

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved