我用C ++编写了一个程序来演示libxml2的使用。代码如下
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
void parseStory (xmlDocPtr doc, xmlNodePtr cur) {
xmlChar *key;
cur = cur->xmlChildrenNode;
while (cur != NULL) {
if ((!xmlStrcmp(cur->name, (const xmlChar *)"keyword"))) {
key = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
printf("keyword: %s\n", key);
xmlFree(key);
}
cur = cur->next;
}
return;
}
static void parseDoc(char *docname) {
xmlDocPtr doc;
xmlNodePtr cur;
doc = xmlParseFile(docname);
if (doc == NULL ) {
fprintf(stderr,"Document not parsed successfully. \n");
return;
}
cur = xmlDocGetRootElement(doc);
if (cur == NULL) {
fprintf(stderr,"empty document\n");
xmlFreeDoc(doc);
return;
}
if (xmlStrcmp(cur->name, (const xmlChar *) "story")) {
fprintf(stderr,"document of the wrong type, root node != story");
xmlFreeDoc(doc);
return;
}
cur = cur->xmlChildrenNode;
while (cur != NULL) {
if ((!xmlStrcmp(cur->name, (const xmlChar *)"storyinfo"))){
parseStory (doc, cur);
}
cur = cur->next;
}
xmlFreeDoc(doc);
return;
}
int main(int argc, char **argv) {
char *docname;
if (argc <= 1) {
printf("Usage: %s docname\n", argv[0]);
return(0);
}
docname = argv[1];
parseDoc (docname);
return (1);
}
我正在使用Ubuntu,我已经安装了libxml2-dev包并使用
进行编译g++ Libxml2Example.cpp -I/usr/include/libxml2/libxml -lxml2 -o output
但是我收到以下错误
Build of configuration Debug for project Libxml2Example ****
make all
Building file: ../src/Libxml2Example.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/Libxml2Example.d" - MT"src/Libxml2Example.d" -o"src/Libxml2Example.o" "../src/Libxml2Example.cpp"
../src/Libxml2Example.cpp:12:30: fatal error: libxml/xmlmemory.h: No such file or directory
compilation terminated.
make: *** [src/Libxml2Example.o] Error 1
如何解决此错误?请帮帮我。
答案 0 :(得分:1)
目录libxml
必须存在于由以下任何环境变量指定的现有隐式搜索包含路径中:
CPATH
CPLUS_INCLUDE_PATH
GCC_INCLUDE_DIR
或其路径必须由`-I。
明确指定我愿意打赌,在编译之后,你会遇到类似的链接问题,找到libxml.a文件,需要-L<path>
设置或设置环境变量LIBRARY_PATH
通常应该避免环境变量方法,以便使您的项目及其构建文件可以移植到其他安装,而无需设置构建环境。
答案 1 :(得分:1)
首先,您需要安装libxml2的开发包
sudo apt-get install libxml2-dev
这将安装库include
文件。
在您的项目中,您需要使用-I/usr/include/libxml2/
即
g++ -O0 -g3 -Wall ../src/Libxml2Example.cpp -I/usr/include/libxml2/ -lxml2 -L/usr/lib/x86_64-linux-gnu/
在x86_64 ubuntu系统中,库安装在/usr/lib/x86_64-linux-gnu/
中。