#includeint main(int argc, char **argv)
{
//Define document pointer
xmlDocPtr doc = xmlNewDoc(BAD_CAST"1.0");
//Define node pointer
xmlNodePtr root_node = xmlNewNode(NULL,BAD_CAST"root");
//Set the root element of the document
xmlDocSetRootElement(doc,root_node);
//Create child nodes directly in the root node
xmlNewTextChild(root_node,NULL,BAD_CAST"newnode1",BAD_CAST"newnode1 content");
xmlNewTextChild(root_node,NULL,BAD_CAST"newnode2",BAD_CAST"newnode2 content");
//Create a new node
xmlNodePtr node = xmlNewNode(NULL,BAD_CAST"node2");
//Create a new text node
xmlNodePtr content = xmlNewText(BAD_CAST"NODE CONTENT");
//Add a new node to parent
xmlAddChild(root_node,node);
xmlAddChild(node,content);
//Create a new property carried by a node
xmlNewProp(node,BAD_CAST"attribute",BAD_CAST"yes");
//Create a son and grandson node element
node = xmlNewNode(NULL,BAD_CAST"son");
xmlAddChild(root_node,node);
xmlNodePtr grandson = xmlNewNode(NULL,BAD_CAST"grandson");
xmlAddChild(node,grandson);
xmlAddChild(grandson,xmlNewText(BAD_CAST"THis is a grandson node"));
//Dump an XML document to a file
int nRel = xmlSaveFile("CreatedXml.xml",doc);
if(nRel != -1)
printf("一个xml文档被创建,写入 %d 个字节\n",nRel);
//Free up all the structures used by a document,tree included
xmlFreeDoc(doc);
//printf("Hello World!\n");
return 0;
}[/code]对这个程序进行编译时,可用以下命令
gcc -I/usr/include/libxml2 CreateXmlFile.c -o CreateXmlFile -L /usr/lib/i386-linux-gnu -lxml2
Ubuntu 14.04下libxml2的安装和使用
其中,-I参数是为了指定gcc编译器查找头文件的路径,-L参数是为了指定libxml2库文件所在的路径,最后的-lxml2指定具体的库文件。(-lxml2一定要放在命令的最后位置,不然会出现找不到链接库的错误,如下图所示)
Ubuntu 14.04下libxml2的安装和使用
具体为什么一定要把-lxml2放在最后的位置,本人目前还没弄明白,有待进一步研究
编译命令也可以写成如下形式:
gcc `xml2-config --cflags` -L /usr/lib/i386-linux-gnu CreateXmlFile.c -o CreateXmlFile -lxml2
或
gcc `xml2-config --cflags` CreateXmlFile.c -o CreateXmlFile -L /usr/lib/i386-linux-gnu -lxml2
或
gcc CreateXmlFile.c -o CreateXmlFile `xml2-config --cflags --libs`
形式虽然不一样,其实命令的实际内容是一样的。因为命令xml2-config --cflags的执行结果为
-I/usr/include/libxml2 (指明include头文件所在的目录)
命令xml2-config --libs的执行结果为
-L/usr/lib/i386-linux-gnu -lxml2 (指明libxml2库文件所在的目录以及具体的库文件)
(不管写成何种形式,只要保证 -lxml2 在编译命令的最后位置即可)