ASP

本类阅读TOP10

·asp常用数据库连接方法和技巧
·无组件生成BMP验证码
·一些常用的辅助代码 (网络收藏)
·JavaScript实现的数据表格:冻结列、调整列宽和客户端排序
·VisualStudio.NET_2003及其 MSDN 下载地址
·ASP模拟MVC模式编程
·图片以二进制流输出到网页
·MD5加密算法 ASP版
·ASP.NET编程中的十大技巧
·改进 ASP 的字符串处理性能

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
将SAX加入我们的ASP应用中(1)

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

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

[ 作者: hydnoahark   添加时间: 2001-7-25 20:10:21 ]


 

在处理大型的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,




相关文章

相关软件