将SAX加入我们的ASP应用中(1)

王朝asp·作者佚名  2006-12-16
窄屏简体版  字體: |||超大  

在处理大型的xml文档的时候,在服务器端直接使用xml dom的时候速度是比较慢的,当我第一次接触到sax的时候,我意识

到我们应该在服务器端将dom和sax结合起来以提高我们程序的效率。我们在asp中最常使用的就是使用com来完成这个工作

(也许你有更好的方法)。

废话少说,还是直接进入实际的代码部分了(下面只是包含了最基本的代码而已)。

首先我们创建一个dll来封装sax的功能好了。

测试环境:win2k prof.+msxml3.0 sp1+vb6

要使用sax我们必须引用(reference)microsoft xml 3.0(我的机器安装的是msxml3.0 sp1)

工程名:saxtesting

类名:clssaxtest

方法:public function myxmlparser(xml文件物理路径) as domdocument

代码:

option explicit

public function myxmlparser(byval strxmlfilepath as variant) as domdocument

dim reader as new saxxmlreader

dim contenthandler as new contenthandlerimpl

dim errorhandler as new errorhandlerimpl

set reader.contenthandler = contenthandler

set reader.errorhandler = errorhandler

on error goto errorhandle

dim xmlfile as string

xmlfile = strxmlfilepath

reader.parseurl (xmlfile)

dim xmldoc as msxml2.domdocument

set xmldoc = createobject("msxml2.domdocument")

xmldoc.loadxml strxml

set myxmlparser = xmldoc

set xmldoc = nothing

exit function

errorhandle:

err.raise 9999, "my xml parser", err.number & " : " & err.description

end function

类名:modpublic

代码:

option explicit

global strxml as string

类名:contenthandlerimpl

代码:

option explicit

implements ivbsaxcontenthandler

private sub ivbsaxcontenthandler_startelement(strnamespaceuri as string, strlocalname as string,

strqname as string, byval attributes as msxml2.ivbsaxattributes)

dim i as integer

intlocker = intlocker + 1

if intlocker > 1 then

end if

strxml = strxml & "<" & strlocalname

for i = 0 to (attributes.length - 1)

strxml = strxml & " " & attributes.getlocalname(i) & "=""" & attributes.getvalue(i) &

""""

next

strxml = strxml & ">"

if strlocalname = "qu" then

err.raise vbobjecterror + 1, "contenthandler.startelement", "found element <qu>"

end if

end sub

private sub ivbsaxcontenthandler_endelement(strnamespaceuri as string, strlocalname as string,

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航