其他分享
首页 > 其他分享> > 在libXML sax解析器(C)中获取属性值的正确方法是什么?

在libXML sax解析器(C)中获取属性值的正确方法是什么?

作者:互联网

我使用libXML的SAX接口在C中编写XML解析器应用程序.

<abc value="xyz &quot;pqr&quot;"/>

我该如何解析这个属性?

我试过用

void startElementNsSAX2Func(void * ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar ** namespaces, int nb_attributes, int nb_defaulted, const xmlChar ** attributes)

,递增属性参数(并检查“以指示属性值的结束)”.

它适用于出现在属性值中的*& quot; *以外的所有属性.

解析这些属性值的正确方法是什么?

谢谢

解决方法:

试试这个功能:

xmlChar *getAttributeValue(char *name, const xmlChar ** attributes,
           int nb_attributes)
{
int i;
const int fields = 5;    /* (localname/prefix/URI/value/end) */
xmlChar *value;
size_t size;
for (i = 0; i < nb_attributes; i++) {
    const xmlChar *localname = attributes[i * fields + 0];
    const xmlChar *prefix = attributes[i * fields + 1];
    const xmlChar *URI = attributes[i * fields + 2];
    const xmlChar *value_start = attributes[i * fields + 3];
    const xmlChar *value_end = attributes[i * fields + 4];
    if (strcmp((char *)localname, name))
        continue;
    size = value_end - value_start;
    value = (xmlChar *) malloc(sizeof(xmlChar) * size + 1);
    memcpy(value, value_start, size);
    value[size] = '\0';
    return value;
}
return NULL;
}

你可以像这样使用它:

char *value = getAttributeValue("value", nb_attributes, attributes);
printf("%s\n", value);
free(value);

标签:libxml2,sax,c,saxparser
来源: https://codeday.me/bug/20190825/1714552.html