欢迎光临
我们一直在努力

ASP无组件上传·从原理剖析到实践(下)-ASP教程,ASP应用

建站超值云服务器,限时71元/月

第七天:实现附加功能

今天,我们就来实现昨天提出的方法和属性,来完善我们的文件上传类。以前没有太注意的性能问题,这一次也要彻底的解决:

1。所有的变量先声明,后使用;

2。设置类的teminate方法;

3。简化有些地方的写法,注意细节。

我们的原则,就是先实现,后优化。当然,象变量声明这样的东西,如果程序很大,最好还是在写程序的时候一次过。如果写完了才加,可以在页面开头加上option explicit(强制变量声明),然后测试所有的方法和属性,直到没有错误为止。

另外,异常代码我们也整理一下:

代码 类名 类型 描述

==============================================================================

11 formelement indexoutofbound 表单元素子集索引越界

12 formelement illegalargument 非法的表单元素子集索引

21 uploadrequest indexoutofbound 文本元素索引越界

22 uploadrequest illegalargument 非法的文本元素索引

23 uploadrequest indexoutofbound 文件元素索引越界

24 uploadrequest nullref 文件元素索引不存在

25 uploadrequest illegalargument 非法的表单元素索引

26 uploadrequest toolargefile 文件%fldname尺寸过大

27 uploadrequest toolargefiles 文件总尺寸过大

28 uploadrequest invalidfiletype 文件%fldname类型错误

好了,下面的,就是我们的整个实现了:

1。com.2yup.util.uploadrequest.class

<%

没有版权,欢迎拷贝或是作为商业用途。

如果要转载,能注明出处最好,我们会很感激您的支持;如果不方便,就算了,呵呵。

感谢各位常来2yup的网友(很多名字,写不下了,呵呵)长期热情的支持,

你们是我持久的动力。

关于这个组件的详细信息,以及编程的全过程,可以来

http://www.2yup.com/asp

的文档中心看个究竟。有任何疑问,欢迎来我们的论坛讨论,或是给我发email:

miles2yup@hotmail.com

—- miles [yup studio] ^ ^

=========================================================================

这个,是存储文本域信息的的类。每一个name的文本域,对应一个这样的类。

=========================================================================

class formelement

m_开头,表示类成员变量。

private m_dicitems

private sub class_initialize()

set m_dicitems = server.createobject("scripting.dictionary")

end sub

set nothing时激发。清理资源

private sub class_terminate()

set m_dicitems = nothing

end sub

count是咱们这个类的一个只读属性

public property get count()

count = m_dicitems.count

end property

value是一个默认属性。目的是得到值

public default property get value()

value = item("")

end property

name是得到文本域名称。就是<input name=xxx>里的xxx

public property get name()

dim keys

keys = m_dicitems.keys

name = keys(0)

name = left(name,instrrev(name,"_")-1)

end property

item属性用来得到重名表单域(比如checkbox)的某一个值

public property get item(index)

dim items, i

if isnumeric(index) then 是数字,合法!

if index > m_dicitems.count-1 then

err.raise 11,"indexoutofbound", "表单元素子集索引越界"

end if

items = m_dicitems.items

item = items(index)

elseif index = "" then 没给值?那就返回所有的!逗号分隔

items = m_dicitems.items

for i = 0 to m_dicitems.count-1

if i = 0 then

item = items(0)

else

item = item & "," & items(i)

end if

next

else 给个一个不是数字的东东?出错!

err.raise 12,"illegalargument", "非法的表单元素子集索引"

end if

end property

public sub add(key, item)

m_dicitems.add key, item

end sub

end class

=========================================================================

这个,是存储文件域信息的的类。每一个name的文件,对应一个这样的类。

=========================================================================

class fileelement

m_开头,表示类成员变量。

private m_strname

private m_bdata

private m_brawdata

private m_strcontenttype

private m_strfilepath

private m_strfilename

private m_lsize

data是一个默认属性。目的是得到值

public default property get data()

data = m_bdata

end property

这个属性很尴尬——stream对象write方法要求的数据类型是

"a variant that contains an array of bytes to be written."

但是我却无法从一个二进制串中得到这个数据类型!的确很奇怪。所以,我打算

使用符合要求的原始数据m_brawdata。但是,vbs的类功能少得可怜,既不能传递

当前对象的引用来回访uploadrequest的m_brawdata也不能用inner class的方

法进行组织。为了保持方法的简洁,所以加了这个只写的rawdata属性。

这个地方很值得改进。

public property let rawdata(data)

m_brawdata = data

end property

name是得到文件域名称,就是<input type=file name=xxx>里的xxx

public property get name()

name = m_strname

end property

contenttype是得到文件contenttype

public property get contenttype()

contenttype = m_strcontenttype

end property

filepath是得到文件在客户端的路径

public property get filepath()

filepath = m_strfilepath

end property

filepath是得到文件在客户端的路径

public property get filename()

filename = m_strfilename

end property

size是得到文件大小

public property get size()

size = m_lsize

end property

public sub add(name, data, contenttype, path)

m_strname = name

m_bdata = data

m_strcontenttype = contenttype

m_strfilepath = path

m_strfilename = right(path, len(path)-instrrev(path, "\"))

m_lsize = lenb(data)

end sub

public sub saveto(path)

call saveas(path, m_strfilename)

end sub

public sub saveas(path, name)

call save(path, name, true)

end sub

public sub savewithoutoverwrite(path, name)

call save(path, name, false)

end sub

private sub save(path, name, isoverwrite)

dim st, st2

这样就可以兼顾c:\xxx\和c:\xxx两种格式了

if right(path,1) <> "\" then path = path & "\"

用两个stream对象,来截取我们要的内容

set st = server.createobject("adodb.stream")

set st2 = server.createobject("adodb.stream")

st.type = 1

st.open

st2.type = 1

st2.open

st.write m_brawdata

st.position = instrb(m_brawdata,m_bdata)-1

st.copyto st2, m_lsize

if isoverwrite then 覆盖保存

st2.savetofile path & name,2

else 不覆盖

st2.savetofile path & name

end if

st.close

set st = nothing

st2.close

set st2 = nothing

end sub

end class

=========================================================================

这个,是我们模拟的request类。我们用它完成asp的request完成不了的任务 🙂

=========================================================================

class uploadrequest

private m_dicforms

private m_dicfiles

private m_brawdata

private m_ltotalbytes

private m_strallowedfileslist

private m_strdeniedfileslist

private m_lmaxfilesize

private m_ltotalmaxfilesize

初始化类成员

private sub class_initialize()

m_ltotalbytes = 0

m_strallowedfileslist = ""

m_strdeniedfileslist = ""

m_lmaxfilesize = -1

m_ltotalmaxfilesize = -1

end sub

set nothing时激发。清理资源

private sub class_terminate()

这些对象应该有自己的清理方法,咱就不管了

set m_dicforms = nothing

set m_dicfiles = nothing

end sub

public sub upload

set m_dicforms = server.createobject("scripting.dictionary")

set m_dicfiles = server.createobject("scripting.dictionary")

call fill()

end sub

存文件到指定路径

public sub saveto(path)

dim felement

调用fileelement自己的方法

for each felement in m_dicfiles

call m_dicfiles.item(felement).saveto(path)

next

end sub

有了这个,就可以检查原始数据了

public property get rawdata()

rawdata = m_brawdata

end property

这一段丑陋的代码是为了实现ourrequest.forms.count这个功能。这个地方值得改进。

public property get forms()

set forms = new counter

forms.setcount(m_dicforms.count)

end property

这一段丑陋的代码是为了实现ourrequest.files.count这个功能。这个地方值得改进。

public property get files()

set files = new counter

files.setcount(m_dicfiles.count)

end property

只读的totalbytes属性

public property get totalbytes()

totalbytes = m_ltotalbytes

end property

只写的allowedfileslist属性,填入允许类型的扩展名,用|分隔

public property let allowedfileslist(afl)

m_strallowedfileslist = afl

end property

只写的deniedfileslist属性,填入允许类型的扩展名,用|分隔

public property let deniedfileslist(dfl)

m_strdeniedfileslist = dfl

end property

只写的maxfilesize属性,填入各个允许上传文件的大小

public property let maxfilesize(mfs)

m_lmaxfilesize = mfs

end property

只写的totalmaxfilesize属性,填入允许上传文件的总大小

public property let totalmaxfilesize(tmfs)

m_ltotalmaxfilesize = tmfs

end property

public property get form(index)

dim items

if isnumeric(index) then 是数字?用数字来检索

if index > m_dicforms.count-1 then

err.raise 21,"indexoutofbound", "文本元素索引越界"

end if

items = m_dicforms.items

set form = items(index)

elseif vartype(index) = 8 then 字符串?也行!

if m_dicforms.exists(index) then 存在,就返回值

set form = m_dicforms.item(index)

else 不存在,就给个空值——request对象就是这么做的。

exit property

end if

else 给了一个不是数字也不是字符串的东东?出错!

err.raise 22,"illegalargument", "非法的文本元素索引"

end if

end property

public property get file(index)

dim items

if isnumeric(index) then 是数字?用数字来检索

if index > m_dicfiles.count-1 then

err.raise 23,"indexoutofbound", "文件元素索引越界"

end if

items = m_dicfiles.items

set file = items(index)

elseif vartype(index) = 8 then 字符串?也行!

if m_dicfiles.exists(index) then 存在,就返回值

set file = m_dicfiles.item(index)

else 不存在,出错!

err.raise 24,"nullref", "文件元素索引不存在"

end if

else 给了一个不是数字也不是字符串的东东?出错!

err.raise 25,"illegalargument", "非法的表单元素索引"

end if

end property

private sub fill

得到数据

m_brawdata=request.binaryread(request.totalbytes)

调用这个函数实现递归循环,读取文本/文件单元

call filleveryfirstpart(m_brawdata)

end sub

private sub filleveryfirstpart(data)

dim const_nameis, const_filenameis, bncrlf, divider, startpos, endpos

dim part1, firstline

dim fldname, fldvalue, felement, filepath, contenttype, ext, afl, dfl

dim istypeerror, i

这就是name="

const_nameis=chrb(110)&chrb(97)&chrb(109)&chrb(101)&chrb(61)&chrb(34)

这就是filename="

const_filenameis=chrb(102)&chrb(105)&chrb(108)&chrb(101)&_

chrb(110)&chrb(97)&chrb(109)&chrb(101)&chrb(61)&chrb(34)

这是回车<return>

bncrlf=chrb(13) & chrb(10)

得到divider,分隔符

divider=leftb(data,instrb(data,bncrlf)-1)

起始位置

startpos = instrb(data,divider)+lenb(divider)+lenb(bncrlf)

终止位置,从起始位置开始到下一个divider

endpos = instrb(startpos, data, divider)-lenb(bncrlf)

if endpos < 1 then 没有下一个了!结束!

exit sub

end if

part1 = midb(data, startpos, endpos-startpos)

得到part1的第一行

firstline = midb(part1, 1, instrb(part1, bncrlf)-1)

没有filename=",有name=",说明是一个文本单元

(这里有一个bug,自己研究一下?当作业吧)

if not instrb(firstline, const_filenameis) > 0_

and instrb(firstline, const_nameis) > 0 then

得到表单域名称,就是<input type=sometype name=somename>里的somename。

fldname = b2s(midb(part1,_

instrb(part1, const_nameis)+lenb(const_nameis),_

instrb(part1, bncrlf)_

-instrb(part1, const_nameis)-lenb(const_nameis)-1))

得到表单域的值

fldvalue = b2s(midb(part1,_

instrb(part1, bncrlf&bncrlf)+lenb(bncrlf&bncrlf),_

lenb(part1)-instrb(part1, bncrlf&bncrlf)+_

lenb(bncrlf&bncrlf)))

if m_dicforms.exists(fldname) then

set felement = m_dicforms.item(fldname)

m_dicforms.remove fldname

else

set felement = new formelement

end if

felement.add fldname&"_"&felement.count, fldvalue

m_dicforms.add fldname, felement

有filename=",有name=",说明是一个文件单元

(这里还是有一个bug,研究出来没?)

elseif instrb(firstline, const_filenameis) > 0_

and instrb(firstline, const_nameis) > 0 then

得到表单域名称,就是<input type=file name=somename>里的somename。

fldname = b2s(midb(part1,_

instrb(part1, const_nameis)+lenb(const_nameis),_

instrb(part1, const_filenameis)_

-instrb(part1, const_nameis)-lenb(const_nameis)-3))

得到表单域的值

fldvalue = midb(part1,_

instrb(part1, bncrlf&bncrlf)+lenb(bncrlf&bncrlf),_

lenb(part1)-instrb(part1, bncrlf&bncrlf)+lenb(bncrlf&bncrlf))

得到路径

filepath = b2s(midb(part1,_

instrb(part1, const_filenameis)+lenb(const_filenameis),_

instrb(part1, bncrlf)_

-instrb(part1, const_filenameis)-lenb(const_filenameis)-1))

得到contenttype

contenttype = b2s(midb(part1,_

instrb(part1, bncrlf)+lenb(bncrlf)+14,_

instrb(part1,_

bncrlf&bncrlf)-instrb(part1, bncrlf)-_

lenb(bncrlf)-14))

if lenb(fldvalue) > 0 then size>0说明有文件传来了。

if m_dicfiles.exists(fldname) then

set felement = m_dicfiles.item(fldname)

m_dicfiles.remove fldname

else

set felement = new fileelement

felement.rawdata = m_brawdata

end if

检查单个文件尺寸

if m_lmaxfilesize > 0 and m_lmaxfilesize < lenb(fldvalue) then _

err.raise 26,"toolargefile", "文件"&fldname&"尺寸过大"

m_ltotalbytes = m_ltotalbytes + lenb(fldvalue)

检查文件总尺寸

if m_ltotalmaxfilesize > 0 and m_ltotalmaxfilesize < m_ltotalbytes then

err.raise 27,"toolargefiles", "文件总尺寸过大"

end if

检查文件类型

ext = right(filepath, len(filepath)-instrrev(filepath, "."))

if m_strallowedfileslist <> "" then

afl = split(m_strallowedfileslist,"|")

istypeerror = true

for i = 0 to ubound(afl)

找到了,允许

if ucase(trim(ext)) = ucase(trim(afl(i))) then

istypeerror = false

exit for

end if

next

if istypeerror then _

err.raise 28,"invalidfiletype", "文件"&fldname&"类型错误"

end if

if m_strdeniedfileslist <> "" then

dfl = split(m_strdeniedfileslist,"|")

for i = 0 to ubound(dfl)

找到了,不允许

if ucase(trim(ext)) = ucase(trim(dfl(i))) then _

err.raise 28,"invalidfiletype", "文件"&fldname&"类型错误"

next

end if

felement.add fldname, fldvalue, contenttype, filepath

m_dicfiles.add fldname, felement

end if

end if

截取剩下的部分,递归调用这个函数,来得到下一个part1。

call filleveryfirstpart(rightb(data, lenb(data)-endpos-1))

end sub

这是一个公用函数,作用是二进制和字符串的转换

private function b2s(bstr)

dim bchr, temp, i

if not isnull(bstr) then

for i = 0 to lenb(bstr) – 1

bchr = midb(bstr,i+1,1)

if ascb(bchr) > 127 then 遇到了双字节,就得两个字符一起处理

temp = temp & chr(ascw(midb(bstr, i+2, 1) & bchr))

i = i+1

else

temp = temp & chr(ascb(bchr))

end if

next

end if

b2s = temp

end function

end class

这是一个辅助类,为了实现ourrequest.forms.count功能。

class counter

private m_icnt

count是咱们这个类的一个只读属性

public property get count()

count = m_icnt

end property

public function setcount(cnt)

m_icnt = cnt

end function

end class

%>

2。testform.html

<form action="doupload.asp" method=post enctype="multipart/form-data">

file1说明:<input type=text name=file1_desc>

file1:<input type=file name=file1><br>

file2说明:<input type=text name=file2_desc>

file2:<input type=file name=file2><br>

<input type=checkbox name=chk value=a>a

<input type=checkbox name=chk value=b>b

<input type=checkbox name=chk value=c>c

<input type=checkbox name=chk value=d>d

<input type=checkbox name=chk value=e>e<hr>

<input type=submit name=upload value=upload>

</form>

3。doupload.asp

<%option explicit%>

<!–#include file="com.2yup.util.uploadrequest.class"–>

<%

下面是测试码

dim ourrequest

set ourrequest = new uploadrequest

ourrequest.allowedfileslist = "gif|doc"

ourrequest.deniedfileslist = "jpg"

ourrequest.maxfilesize = 10*1000 10k

ourrequest.totalmaxfilesize = 15*1000 15k

on error resume next

ourrequest.upload

if err.number <> 0 then

response.write err.description

response.end

end if

on error goto 0 关闭on error resume next

%>

<%=ourrequest.form(0).name%>:<%=ourrequest.form("file1_desc")%><br>

<%=ourrequest.form(1).name%>:<%=ourrequest.form("file2_desc")%><br>

<%=ourrequest.form(2).name%>:<%=ourrequest.form(2).count%><br>

<%=ourrequest.form(3).name%>:<%=ourrequest.form(3)%>

一共有<%=ourrequest.forms.count%>个文本单元<hr>

<%=ourrequest.file(0).name%>:

<%=ourrequest.file("file1").contenttype%>:

<%=ourrequest.file("file1").size%>byte:

<%=ourrequest.file("file1").filename%>:

<%=ourrequest.file("file1").filepath%><br>

<%=ourrequest.file(1).name%>:

<%=ourrequest.file("file2").contenttype%>:

<%=ourrequest.file("file2").size%>byte:

<%=ourrequest.file("file2").filename%>:

<%=ourrequest.file("file2").filepath%><br>

一共有<%=ourrequest.files.count%>个文件单元,共<%=ourrequest.totalbytes%>byte<hr>

<%

测试存盘。

dim desfolder:desfolder=server.mappath("incoming")

call ourrequest.saveto(desfolder)

call ourrequest.file(0).saveas(desfolder, "复件 "&ourrequest.file(0).filename)

因为选择了不覆盖的方法,所以第二次执行这一句会出错,一定要注意啊

call ourrequest.file("file2").savewithoutoverwrite(desfolder,_

"复件 "&ourrequest.file(1).filename)

%>

<%

测试写库

if false then 要测的话,就把false改成true。

数据库结构:

id 自增主键

img access里,用ole对象型;在sql server里,就应该是image型了

这部分没啥好说的。。

dim conngraph, rec

set conngraph=server.createobject("adodb.connection")

conngraph.connectionstring="driver={microsoft access driver (*.mdb)};dbq=" &_

server.mappath("img.mdb")

conngraph.open

set rec=server.createobject("adodb.recordset")

rec.open "select * from img where id is null",conngraph,1,3

rec.addnew

rec("img").appendchunk ourrequest.file(0)

rec.update

rec.close

set rec=nothing

set conngraph=nothing

读库代码如下。当然,读库显示是要在其他页面进行的。。

这部分也没啥好说的。不用contenttype,ie也认。要是其他浏览器,就设一下。

set conngraph=server.createobject("adodb.connection")

conngraph.connectionstring="driver={microsoft access driver (*.mdb)};dbq=" &_

server.mappath("img.mdb")

conngraph.open

set rec=server.createobject("adodb.recordset")

rec.open "select * from img order by id desc",conngraph,1,1

response.binarywrite rec("img")

rec.close

set rec=nothing

set conngraph=nothing

end if

%>

<%

清理资源,别忘了啊

set ourrequest = nothing

%>

好了,把这3个文件保存到一个虚拟目录下,然后,建立一个incoming的子目录,并且给足权限(关于权限,看看http://www.2yup.com/asp/forum/branch.asp?pid=2430#f0002430),就可以测试了。现在,一个功能强大的无组件上传类就已经完成了。

==============================================================

结束语

这里演示了文件上传从分析倒实践的全过程。通过不懈的努力,我们终于达到了预定的目标。当然,这个实现,和“完美”尚有差距。他没有经过严格测试;还存在至少两个bug;还有几个蹩脚的实现。这些,都是值的改进的。但是,如果能掌握这个示例的完整过程,相信大家也可以胜任各种复杂的应用,能够独立的完成一般的设计和编码工作了。所以,我们的收获,绝不仅仅是知道了怎样上传一个文件,更多的,是知道了怎样达到一个目标。最后,附上整个示例的源码和用到的库。刚刚(2002-12-02 09:00)才进行了更新,做了一个自认为比较清晰的例子。不需要看懂,就可以用了 ^ ^:

http://www.2yup.com/asp/attach/a0000006.zip

注意,把这个包里的东西放到一个虚拟目录下,其中的incoming子目录一定要有iusr的写权限(关于权限,看看http://www.2yup.com/asp/forum/branch.asp?pid=2430#f0002430)。有任何问题,请到论坛提出。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP无组件上传·从原理剖析到实践(下)-ASP教程,ASP应用
分享到: 更多 (0)