在htmlcxx中查找'strings.h'时出错

时间:2013-03-19 23:58:08

标签: c++ html

#include <iostream>
#include <fstream>
#include <cstdlib>
#include <sstream>
#include <string>
#include <ParserDom.h>
using namespace std;

using namespace htmlcxx;

int main()
{

ifstream bucky;
string str="";
    bucky.open("C:\\tasks\\TEST2.txt");

if(!bucky.is_open()){
    exit(EXIT_FAILURE); 
}
char word[50];  
bucky >> word;
str.append(word);
str.append(" ");    
while(bucky.good())
{

    bucky >> word;
    str.append(word);
    str.append(" ");
     }

//cout<< word<<" "<<endl;
bucky >> word;
str.append(word);
str.append(" ");

HTML::ParserDom parser;
tree<HTML::Node> dom = parser.parseTree(str);
//Print whole DOM tree
cout << dom << endl;
 }

嗨,我正在使用htmlcxx,我安装了它,将其头文件和库包含在我的项目中,并编写了我的代码,如上所述 简而言之,我打开了一个html文件,把它放在字符串中,然后使用html解析器来编写它。但是我收到了以下错误:

c:\...\htmlcxx-0.84\html\parsersax.tcc(4): fatal error C1083: Cannot open include file: 'strings.h': No such file or directory

我想知道你是否可以帮我解决这个问题。**

1 个答案:

答案 0 :(得分:1)

我认为strings.h是一个unix头文件。基本上,字符串库有两个不同的标题:string.hstrings.h。那些定义略有不同的原型。应该有一种适当的方法来使用宏来包含适当的方法来测试您的编译环境。像

这样的东西
#ifdef _WIN32
#include <string.h> 
#else
#include <strings.h>
#endif

我不知道哪一个是Windows上的标准,这只是一个例子。如果您使用的是第三方代码,则可能无法移植。你应该看看他们的标题,看看他们是否正在使用上面的代码。

编辑: 尝试这个快速而丑陋的修复:创建一个文件strings.h,其中包含:

extern "C" {
#include <string.h>
}

这可能会有效,具体取决于他们使用的功能......

修改

他们确实在ParserSax.tcc中使用了这种宏:

#if !defined(WIN32) || defined(__MINGW32__)
#include <strings.h>
#endif

因此,您的mingw安装可能存在问题。尝试在您的系统上手动查找此文件。