佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > 為SWFUpload增加ASP版本的上傳處理程序

為SWFUpload增加ASP版本的上傳處理程序

熱門標(biāo)簽:阿里云 銀行業(yè)務(wù) 科大訊飛語音識別系統(tǒng) Mysql連接數(shù)設(shè)置 服務(wù)器配置 電子圍欄 Linux服務(wù)器 團購網(wǎng)站
但也許是隨著asp的逐漸淡出web開發(fā),官方僅提供了.net、php等版本的上傳處理程序,對于asp開發(fā)者來說則需要自行處理服務(wù)器端的數(shù)據(jù)接收。

剛接觸此組件時就被它功能強大與靈活方便吸引,由于當(dāng)時項目采用asp開發(fā),百度一番后發(fā)現(xiàn)并無好用的asp上傳處理程序(現(xiàn)在有很多啦^^),看來只能自己研究開發(fā)啦,最初采用處理普通上傳的方法來截取文件的數(shù)據(jù),幾經(jīng)測試發(fā)現(xiàn)并不能有效接收組件傳遞過來的文件數(shù)據(jù),無奈只能著手分析下它發(fā)送的數(shù)據(jù)形式,通過分析發(fā)現(xiàn)它發(fā)送的數(shù)據(jù)格式還是和普通上傳存在一些區(qū)別的,無論是圖片還是文件都是以octet-stream形式發(fā)送到服務(wù)器的,了解了數(shù)據(jù)格式,剩下的就是截取啦,下面把我的處理方法分享給需要的朋友,處理速度還算理想。
復(fù)制代碼 代碼如下:

%
Class SWFUpload

Private formData, folderPath, streamGet
Private fileSize, chunkSize, bofCont, eofCont

REM CLASS-INITIALIZE

Private Sub Class_Initialize
Call InitVariant
Server.ScriptTimeOut = 1800
Set streamGet = Server.CreateObject("ADODB.Stream")

sAuthor = "51JS.COM-ZMM"
sVersion = "Upload Class 1.0"
End Sub

REM CLASS-INITIALIZE

Public Property Let SaveFolder(byVal sFolder)
If Right(sFolder, 1) = "/" Then
folderPath = sFolder
Else
folderPath = sFolder "/"
End If
End Property

Public Property Get SaveFolder
SaveFolder = folderPath
End Property

Private Function InitVariant
chunkSize = 1024 * 128

folderPath = "/" : fileSize = 1024 * 10
bofCont = StrToByte("octet-stream" vbCrlf vbCrlf)
eofCont = StrToByte(vbCrlf String(12, "-"))
End Function

Public Function GetUploadData
Dim curRead : curRead = 0
Dim dataLen : dataLen = Request.TotalBytes

streamGet.Type = 1 : streamGet.Open
Do While curRead dataLen
Dim partLen : partLen = chunkSize
If partLen + curRead > dataLen Then partLen = dataLen - curRead
streamGet.Write Request.BinaryRead(partLen)
curRead = curRead + partLen
Loop
streamGet.Position = 0
formData = streamGet.Read(dataLen)

Call GetUploadFile
End Function

Public Function GetUploadFile
Dim begMark : begMark = StrToByte("filename=")
Dim begPath : begPath = InStrB(1, formData, begMark ChrB(34)) + 10
Dim endPath : endPath = InStrB(begPath, formData, ChrB(34))
Dim cntPath : cntPath = MidB(formData, begPath, endPath - begPath)
Dim cntName : cntName = folderPath GetClientName(cntPath)

Dim begFile : begFile = InStrB(1, formData, bofCont) + 15
Dim endFile : endFile = InStrB(begFile, formData, eofCont)

Call SaveUploadFile(cntName, begFile, endFile - begFile)
End Function

Public Function SaveUploadFile(byVal fName, byVal bCont, byVal sLen)
Dim filePath : filePath = Server.MapPath(fName)
If CreateFolder("|", GetParentFolder(filePath)) Then
streamGet.Position = bCont
Set streamPut = Server.CreateObject("ADODB.Stream")
streamPut.Type = 1 : streamPut.Mode = 3 : streamPut.Open
streamPut.Write streamGet.Read(sLen)
streamPut.SaveToFile filePath, 2
streamPut.Close : Set streamPut = Nothing
End If
End Function

Private Function IsNothing(byVal sVar)
IsNothing = IsNull(sVar) Or (sVar = Empty)
End Function

Private Function StrToByte(byVal sText)
For i = 1 To Len(sText)
StrToByte = StrToByte ChrB(Asc(Mid(sText, i, 1)))
Next
End Function

Private Function ByteToStr(byVal sByte)
Dim streamTmp
Set streamTmp = Server.CreateObject("ADODB.Stream")
streamTmp.Type = 2
streamTmp.Mode = 3
streamTmp.Open
streamTmp.WriteText sByte
streamTmp.Position = 0
streamTmp.CharSet = "utf-8"
streamTmp.Position = 2
ByteToStr = streamTmp.ReadText
streamTmp.Close
Set streamTmp = Nothing
End Function

Private Function GetClientName(byVal bInfo)
Dim sInfo, regEx
sInfo = ByteToStr(bInfo)
If IsNothing(sInfo) Then
GetClientName = ""
Else
Set regEx = New RegExp
regEx.Pattern = "^.*\\([^\\]+)$"
regEx.Global = False
regEx.IgnoreCase = True
GetClientName = regEx.Replace(sInfo, "$1")
Set regEx = Nothing
End If
End Function

Private Function GetParentFolder(byVal sPath)
Dim regEx
Set regEx = New RegExp
regEx.Pattern = "^(.*)\\[^\\]*$"
regEx.Global = True
regEx.IgnoreCase = True
GetParentFolder = regEx.Replace(sPath, "$1")
Set regEx = Nothing
End Function

Private Function CreateFolder(byVal sLine, byVal sPath)
Dim oFso
Set oFso = Server.CreateObject("Scripting.FileSystemObject")
If Not oFso.FolderExists(sPath) Then
Dim regEx
Set regEx = New RegExp
regEx.Pattern = "^(.*)\\([^\\]*)$"
regEx.Global = False
regEx.IgnoreCase = True
sLine = sLine regEx.Replace(sPath, "$2") "|"
sPath = regEx.Replace(sPath, "$1")
If CreateFolder(sLine, sPath) Then CreateFolder = True
Set regEx = Nothing
Else
If sLine = "|" Then
CreateFolder = True
Else
Dim sTemp : sTemp = Mid(sLine, 2, Len(sLine) - 2)
If InStrRev(sTemp, "|") = 0 Then
sLine = "|"
sPath = sPath "\" sTemp
Else
Dim Folder : Folder = Mid(sTemp, InStrRev(sTemp, "|") + 1)
sLine = "|" Mid(sTemp, 1, InStrRev(sTemp, "|") - 1) "|"
sPath = sPath "\" Folder
End If
oFso.CreateFolder sPath
If CreateFolder(sLine, sPath) Then CreateFolder = True
End if
End If
Set oFso = Nothing
End Function

REM CLASS-TERMINATE

Private Sub Class_Terminate
streamGet.Close
Set streamGet = Nothing
End Sub

End Class

REM 調(diào)用方法
Dim oUpload
Set oUpload = New SWFUpload
oUpload.SaveFolder = "存放路徑"
oUpload.GetUploadData
Set oUpload = Nothing
%>
您可能感興趣的文章:
  • 使用SWFUpload實現(xiàn)無刷新上傳圖片
  • PHP swfupload圖片上傳的實例代碼
  • SwfUpload在IE10上不出現(xiàn)上傳按鈕的解決方法
  • swfupload ajax無刷新上傳圖片實例代碼
  • phpcms模塊開發(fā)之swfupload的使用介紹
  • SWFUpload與CI不能正確上傳識別文件MIME類型解決方法分享
  • swfupload 多文件上傳實現(xiàn)代碼
  • swfupload使用代碼說明
  • 文件上傳之SWFUpload插件(代碼)
  • 文件上傳插件SWFUpload的使用指南

標(biāo)簽:萍鄉(xiāng) 蚌埠 衢州 衡水 江蘇 大理 棗莊 廣元

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《為SWFUpload增加ASP版本的上傳處理程序》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    同江市| 从化市| 宾川县| 咸阳市| 新宁县| 久治县| 偏关县| 黑河市| 金阳县| 通辽市| 历史| 武功县| 遂宁市| 大埔县| 富源县| 静海县| 浮山县| 青岛市| 黄山市| 宜州市| 鞍山市| 贵定县| 金寨县| 邓州市| 腾冲县| 通江县| 抚松县| 南澳县| 镇雄县| 郁南县| 肥乡县| 茶陵县| 商都县| 英德市| 梁河县| 大新县| 雷山县| 南木林县| 双流县| 郑州市| 阳城县|