1
http://www.jiemai.com/imagesupload/1582/middle/0858-1-001.jpg讀取字節碼從URL
傳統的ASP我想上面的圖片URL保存爲與傳統的ASP名爲「0858-1-001.jpg」的文件。 如果有人幫我,我真的很感激。我試圖用許多asp腳本來讀取字節碼。
http://www.jiemai.com/imagesupload/1582/middle/0858-1-001.jpg讀取字節碼從URL
傳統的ASP我想上面的圖片URL保存爲與傳統的ASP名爲「0858-1-001.jpg」的文件。 如果有人幫我,我真的很感激。我試圖用許多asp腳本來讀取字節碼。
有沒有一個服務器在這裏,但這裏是測試VBScript版本,使用它在ASP中你應該有的Server.CreateObject更換creatObject
function download(url, destination)
download = false
on error resume next
set xml = CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", url, False
xml.Send
if err.number = 0 then
if xml.readystate = 4 then
if xml.status = 200 then
wscript.echo xml.readystate
wscript.echo xml.status
set oStream = createobject("Adodb.Stream")
const adTypeBinary = 1, adSaveCreateOverWrite = 2, adSaveCreateNotExist = 1
oStream.type = adTypeBinary
oStream.open
oStream.write xml.responseBody
oStream.saveToFile destination, adSaveCreateOverWrite
oStream.close
set oStream = nothing
download = true
end if
end if
end if
set xml = Nothing
end function
請幫助我,因爲我一直在堅持自上次週末以來 – user1377291
請不要在評論中包含代碼,請使用問題的編輯功能來提高其質量。包括你實際遇到的問題的具體細節。 – AnthonyWJones
謝謝安東尼,我得到了解決方案,我真的很感激至少你回答了我 – user1377291