為SWFUpload增加ASP版本的上傳處理程序
剛接觸此組件時(shí)就被它功能強(qiáng)大與靈活方便吸引,由于當(dāng)時(shí)項(xià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ù)格式,剩下的就是截取啦,下面把我的處理方法分享給需要的朋友,處理速度還算理想。
<%
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
%>
相關(guān)文章
asp從字符串里截取N個(gè)帶HTML的字符的函數(shù)
從字符串里截取N個(gè)帶HTML的字符,現(xiàn)在的實(shí)現(xiàn)方法還不完善,過程是:從字符串里找各種控件的開始,然后依些分開,放到數(shù)組里,然后一個(gè)一個(gè)數(shù)組的加上來看看字符是否大于給定的字符如果是,那么,返回這個(gè)數(shù)組2008-06-06不能使用“;文件已在使用中 Microsoft JET Database Engine
不能使用 '';文件已在使用中。說明: 執(zhí)行當(dāng)前 Web 請求期間,出現(xiàn)未處理的異常。請檢查堆棧跟蹤信息,以了解有關(guān)該錯(cuò)誤以及代碼中導(dǎo)致錯(cuò)誤的出處的詳細(xì)信息2012-06-06ASPWebPack(整站文件備份系統(tǒng)) v1.0.2 黑客也用
ASPWebPack(整站文件備份系統(tǒng)) v1.0.2 黑客也用...2007-10-10Microsoft JET Database Engine 錯(cuò)誤 ''80004005'' 未指定的錯(cuò)誤的完美解決方法
Microsoft JET Database Engine 錯(cuò)誤 ''80004005'' 未指定的錯(cuò)誤的完美解決方法...2007-03-03asp下實(shí)現(xiàn) 重新排序數(shù)字?jǐn)?shù)組的代碼
asp下實(shí)現(xiàn) 重新排序數(shù)字?jǐn)?shù)組的代碼...2007-08-08ASP的Server.MapPath()不同參數(shù)返回路徑總結(jié)
這篇文章主要介紹了ASP的Server.MapPath()不同參數(shù)返回路徑總結(jié),也就是在Server.MapPath()中填入絕對路徑、相對路徑等情況的返回值總結(jié),需要的朋友可以參考下2014-07-07IIS訪問ASP頁面時(shí)報(bào)錯(cuò)The requested resource is in use.的解決辦法
IIS訪問ASP頁面時(shí)報(bào)錯(cuò)The requested resource is in use.的解決辦法...2007-04-04