免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 6466 | 回复: 13
打印 上一主题 下一主题

[C] libxml2里面根据名字求一个指定的子节点 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-12-03 17:49 |只看该作者 |倒序浏览
本帖最后由 asdmonster 于 2012-12-05 09:57 编辑

在libxml2里面,比如,在如下的xml里面:
  1. <a>
  2.         <b>
  3.                 <c>
  4.                         <d>my text</d>
  5.                 </c>   
  6.         </b>
  7. </a>
复制代码
如果当前在b这个元素,如果求d这个节点,xpath大致是这个样子: /c/d

libxml2里面用什么方法能够做到,如果一层一层的往里面遍历,太麻烦了,有什么简单法子可行不?


我需要一个便利的方法,用相对路径(或者名字)解析Node的子节点.

论坛徽章:
0
2 [报告]
发表于 2012-12-03 18:39 |只看该作者
google or bing or baidu or yahoo or sogo or .....

论坛徽章:
4
水瓶座
日期:2013-09-06 12:27:30摩羯座
日期:2013-09-28 14:07:46处女座
日期:2013-10-24 14:25:01酉鸡
日期:2014-04-07 11:54:15
3 [报告]
发表于 2012-12-03 20:24 |只看该作者
本帖最后由 linux_c_py_php 于 2012-12-03 20:25 编辑

libxml2本来就支持xpath, xmlXPathEvalExpression.

论坛徽章:
1
巨蟹座
日期:2014-03-18 23:44:30
4 [报告]
发表于 2012-12-04 11:08 |只看该作者
我也在找那么一种方法,顶一下
www.xmlsoft.org 这个官方文档,不知有没有说明,没有认真看

论坛徽章:
0
5 [报告]
发表于 2012-12-04 11:49 |只看该作者
socay2 发表于 2012-12-04 11:08
我也在找那么一种方法,顶一下
www.xmlsoft.org 这个官方文档,不知有没有说明,没有认真看


至少它自己提供的xpath部分好像没有相关的方法,唯一的一个xpatheval什么的方法,必须以doc为上下文.(至少传入的参数好像只有这么一个).

论坛徽章:
0
6 [报告]
发表于 2012-12-04 12:36 |只看该作者
本帖最后由 qinggeng 于 2012-12-04 12:38 编辑
asdmonster 发表于 2012-12-04 11:49
至少它自己提供的xpath部分好像没有相关的方法,唯一的一个xpatheval什么的方法,必须以doc为上下文.(至少 ...

你确定?
函数原型:
  1. xmlXPathObjectPtr        xmlXPathEval        (const xmlChar * str,
  2.                                          xmlXPathContextPtr ctx)
复制代码
结构体:
  1. Structure xmlXPathContext
  2. struct _xmlXPathContext {
  3.     xmlDocPtr        doc        // The current document
  4.     xmlNodePtr        node        // The current node
  5.     int        nb_variables_unused        // unused (hash table)
  6.     int        max_variables_unused        // unused (hash table)
  7.     xmlHashTablePtr        varHash        // Hash table of defined variables
  8.     int        nb_types        // number of defined types
  9.     int        max_types        // max number of types
  10.     xmlXPathTypePtr        types// Array of defined types
  11.     int        nb_funcs_unused        // unused (hash table)
  12.     int        max_funcs_unused        // unused (hash table)
  13.     xmlHashTablePtr        funcHash        // Hash table of defined funcs
  14.     int        nb_axis        // number of defined axis
  15.     int        max_axis        // max number of axis
  16.     xmlXPathAxisPtr        axis        // Array of defined axis the namespace nod
  17.     xmlNsPtr *        namespaces        // Array of namespaces
  18.     int        nsNr        // number of namespace in scope
  19.     void *        user        // function to free extra variables
  20.     int        contextSize        // the context size
  21.     int        proximityPosition        // the proximity position extra stuff for
  22.     int        xptr        // is this an XPointer context?
  23.     xmlNodePtr        here        // for here()
  24.     xmlNodePtr        origin        // for origin() the set of namespace decla
  25.     xmlHashTablePtr        nsHash        // The namespaces hash table
  26.     xmlXPathVariableLookupFunc        varLookupFunc        // variable lookup func
  27.     void *        varLookupData        // variable lookup data Possibility to lin
  28.     void *        extra        // needed for XSLT The function name and U
  29.     const xmlChar *        function
  30.     const xmlChar *        functionURI        // function lookup function and data
  31.     xmlXPathFuncLookupFunc        funcLookupFunc        // function lookup func
  32.     void *        funcLookupData        // function lookup data temporary namespac
  33.     xmlNsPtr *        tmpNsList        // Array of namespaces
  34.     int        tmpNsNr        // number of namespaces in scope error rep
  35.     void *        userData        // user specific data block
  36.     xmlStructuredErrorFunc        error        // the callback in case of errors
  37.     xmlError        lastError        // the last error
  38.     xmlNodePtr        debugNode        // the source node XSLT dictionary
  39.     xmlDictPtr        dict        // dictionary if any
  40.     int        flags        : flags to control compilation Cache for
  41.     void *        cache
  42. }
复制代码
创建结构体的函数:
  1. xmlXPathContextPtr        xmlXPathNewContext        (xmlDocPtr doc)
复制代码
有了这几样东西还不知道怎么使用xpath,我建议你重新阅读一下w3c上面的xpath标准。
看样子你不怎么熟悉xpath,顶楼的xpath是错的。

论坛徽章:
1
巨蟹座
日期:2014-03-18 23:44:30
7 [报告]
发表于 2012-12-04 12:53 |只看该作者
回复 6# qinggeng


    xmlXPathContextPtr        xmlXPathNewContext        (xmlDocPtr doc)

xmlDocPtr 这个指针有如何得到了。如何通过一个 xml 文件,调用哪个函数来得到这个值呢?

论坛徽章:
0
8 [报告]
发表于 2012-12-04 12:58 |只看该作者
socay2 发表于 2012-12-04 12:53
回复 6# qinggeng

Orz……我建议你还是先去了解一下dom模型之类的知识吧……

论坛徽章:
1
巨蟹座
日期:2014-03-18 23:44:30
9 [报告]
发表于 2012-12-04 21:28 |只看该作者
回复 8# qinggeng


    嗯,谢谢。 在这方面只是还比较欠缺。不过我在官方的例子中,找到了方法。

论坛徽章:
0
10 [报告]
发表于 2012-12-05 09:52 |只看该作者
qinggeng 发表于 2012-12-04 12:36
你确定?
函数原型:结构体:创建结构体的函数:有了这几样东西还不知道怎么使用xpath,我建议你重新阅读 ...


你懂xpath,好吧. 很明显如果是doc的上下文,就必须要以//开始的绝对路径,而不是相对路径.

我复述一下我遇到的问题:我需要一个便利的方法,用相对路径(或者名字)解析Node的子节点.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP