1
#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

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

4

1 回答 1

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安装可能有问题。尝试在您的系统上手动查找此文件。

于 2013-03-20T00:28:10.980 回答