libxml2属性修改C.

时间:2013-09-27 14:29:37

标签: c libxml2

我想在xml中更改一个属性('voltage'):

...
    <detector voltage="1.2e3f"/>
...

以下是我尝试这样做的方法:

 void save_detector_attr(xmlNode *node, xmlDoc *doc){
        char *voltage;
        xmlAttrPtr s_vnewattr;
        char buf[128];
        xmlNode *cur = node->xmlChildrenNode;
        float sv;
        int cnt = 0;
        while(cur != NULL) {
            if (cur->type == XML_ELEMENT_NODE) {
                if (!xmlStrcmp(cur->name, "detector")){
                    voltage = xmlGetProp(cur, "voltage");
                    sv = atof(voltage);

                    snprintf(buf, 128, "%f", sv + 20.1 );

                    s_vnewattr = xmlNewProp (cur, "voltage", buf);
                    printf(" SAVING to voltage value: %s\n", buf);

                }
            }
            cur = cur->next;
        }
        xmlSaveFormatFile ("./mc2x.xml", doc, 1);

遗憾的是,在调用该函数后,我没有重写属性,而是使用了这个新文件:

<detector voltage="1.2e3f" voltage="1220.100000"/>

如何重写该属性而不是创建新属性?

问候 Ĵ

1 个答案:

答案 0 :(得分:6)

只需使用xmlSetProp

xmlAttrPtr xmlSetProp (xmlNodePtr node, 
                       const xmlChar * name, 
                       const xmlChar * value)
  

设置(或重置)节点承载的属性。如果@name有前缀,那么将使用相应的命名空间绑定(如果在范围内);这是一个错误,它在范围内没有这样的ns绑定。