0

我只是想读取之前写出文件的 XML 节点内容中的字符串。这是代码:

int main() {

xmlNodePtr n, n2, n3;
xmlDocPtr doc;
xmlChar *xmlbuff;
int buffersize;
xmlChar* key;

doc = xmlNewDoc(BAD_CAST "1.0");
n = xmlNewNode(NULL, BAD_CAST "root");


xmlNodeSetContent(n, BAD_CAST "test1");
n2 = xmlNewNode(NULL, BAD_CAST "devices");
xmlNodeSetContent(n2, BAD_CAST "test2");
n3 = xmlNewNode(NULL, BAD_CAST "device");
xmlNodeSetContent(n3, BAD_CAST "test3");

//n2 = xmlDocCopyNode(n2, doc, 1);
xmlAddChild(n2,n3);
xmlAddChild(n,n2);


xmlDocSetRootElement(doc, n);


xmlSaveFormatFileEnc( FILENAME, doc, "utf-8", 1 );

doc = xmlParseFile(FILENAME);
n = xmlDocGetRootElement(doc);

key = xmlNodeListGetString(doc, n, 1);
printf("keyword: %s\n", key);
xmlFree(key);

n = n->children;

key = xmlNodeListGetString(doc, n, 1);
printf("keyword: %s\n", key);
xmlFree(key);

n = n->children;

key = xmlNodeListGetString(doc, n, 1);
printf("keyword: %s\n", key);
xmlFree(key);

n2 = xmlNewNode(NULL, BAD_CAST "address");
xmlAddChild(n,n2);

xmlDocSetRootElement(doc, n);

xmlSaveFormatFileEnc( FILENAME, doc, "utf-8", 1 );

return 0;
}

此代码的输出是 -> 关键字:(null) 关键字:test1 关键字:(null)

为什么我看不到 test2 和 test3?

提前致谢。

4

1 回答 1

1

您生成的 XML 文件是这样的:

<?xml version="1.0" encoding="utf-8"?>
<root>
    test1
    <devices>
        test2
        <device>
            test3
        </device>
    </devices>
</root>

在 libxml 中,子项包含文本节点和元素。您需要检查类型字段以了解节点指向的内容。

这是您可以使用的代码(我确信有更好的方法可以做到这一点,但它清楚地显示了您应该执行的类型测试)。我使用 n 作为元素节点,使用 n2 搜索文本节点。

// Get <root>    
n = xmlDocGetRootElement(doc);
n2 = n -> children;
while (n2 != NULL && n2 -> type != XML_TEXT_NODE)
    n2 = n2 -> next;
if (n2 != NULL)
{
   key = xmlNodeListGetString(doc, n2, 1);
   printf("keyword: %s\n", key);
   xmlFree(key);
}

// grab child
n = n -> children;
while (n != NULL && n -> type != XML_ELEMENT_NODE)
    n = n -> next;
if (n == NULL)
    return -1;

// grab its 1st text child       
n2 = n -> children;
while (n2 != NULL && n2 -> type != XML_TEXT_NODE)
    n2 = n2 -> next;
if (n2 != NULL)
{
   key = xmlNodeListGetString(doc, n2, 1);
   printf("keyword: %s\n", key);
   xmlFree(key);
}

// grab child
n = n -> children;
while (n != NULL && n -> type != XML_ELEMENT_NODE)
    n = n -> next;
if (n == NULL)
    return -1;

// grab its 1st text child       
n2 = n -> children;
while (n2 != NULL && n2 -> type != XML_TEXT_NODE)
    n2 = n2 -> next;
if (n2 != NULL)
{
   key = xmlNodeListGetString(doc, n2, 1);
   printf("keyword: %s\n", key);
   xmlFree(key);
}
于 2012-07-09T12:06:20.617 回答