xmlEventHandler(XML)
xmlEventHandler()所属R语言包:XML
Default handlers for the SAX-style event XML parser
默认处理程序事件的SAX风格的XML解析器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a function that returns a closure instance containing the default handlers for use with xmlEventParse for parsing XML documents via the SAX-style parsing.
这是一个函数,返回一个封闭的实例,其中包含的默认处理程序使用xmlEventParse用于解析XML文档通过SAX式的分析。
用法----------Usage----------
xmlEventHandler()
Details
详细信息----------Details----------
These handlers simply build up the DOM tree and thus perform the same job as xmlTreeParse. It is here more as an example, reference and a base that users can extend.
这些处理程序简单地构建DOM树,并执行相同的工作xmlTreeParse。它是在这里作为一个例子,参考和碱,用户可以扩展。
值----------Value----------
The return value is a list of functions which are used as callbacks by the internal XML parser when it encounters certain XML elements/structures. These include items such as the start of an element, end of an element, processing instruction, text node, comment, entity references and definitions, etc.
返回值是作为回调函数,以使用内部的XML解析器,当它遇到某些XML元素/结构的列表。这些项目包括如元素开始,元素结束,处理指令,文本节点,注释,实体引用和定义,等等。
参数:startElement
参数:endElement
参数:processingInstruction
参数:text
参数:comment
参数:externalEntity
参数:entityDeclaration
参数:cdata
参数:dom
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
xmlEventParse xmlTreeParse
xmlEventParsexmlTreeParse
实例----------Examples----------
xmlEventParse(system.file("exampleData", "mtcars.xml", package="XML"),
handlers=xmlEventHandler())
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|