supportsExpat(XML)
supportsExpat()所属R语言包:XML
Determines which native XML parsers are being used.
确定正在使用的本机XML解析器。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Use of the Gnome libxml and Expat parsers is supported in this R/S XML package, but both need not be used when compiling the package. These functions determine whether each is available in the underlying native code.
使用的Gnome的libxml和Expat解析器,支持R / S的XML包,但都需要编译的时候使用的包装。这些功能确定每个可在底层的本机代码。
----------Usage----------
supportsExpat()
supportsLibxml()
Details
详细信息----------Details----------
One might to use different parsers to test validity of a document in different ways and to get different error messages. Additionally, one parser may be more efficient than the other. These methods allow one to write code in such a way that one parser is preferred and is used if it is available, but the other is used if the first is not available.
有人可能会使用不同的解析器,测试文档的有效性,以不同的方式和不同的错误消息。此外,一个解析器可能会比其他的更高效。这些方法允许一个编写代码以这样一种方式,一个解析器是优选的,并且如果它是可用使用,但如果第一个是不可用的,另一种是用。
值----------Value----------
Returns TRUE if the corresponding library has been linked into the package.
返回TRUE已被链接到相应的库包的。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
xmlEventParse
xmlEventParse
实例----------Examples----------
# use Expat if possible, otherwise libxml[如果可能的话,使用外籍否则的libxml]
fileName <- system.file("exampleData", "mtcars.xml", package="XML")
xmlEventParse(fileName, useExpat = supportsExpat())
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|