我需要在一些html文件中挖掘一下,我想先将它们转换为一行中一个标记的可读形式。不过我没有html的经验。有人可以纠正我的代码并指出我忘记的规则吗?
我的代码不适用于真实页面。在程序执行结束时,嵌套计数器应设置为0,因为程序应该保留它遇到的所有嵌套标记。它不是。对于Facebook页面,超过2000个标签保持打开状态。
在建议我使用图书馆之前,我还没有看到任何好的图书馆。对于我的页面转换为xml某种程度上失败了,htmlcxx库没有适当的文档。
#include <cstdio>
char get_char( FILE *stream ) {
char c;
do
c = getc(stream);
while ( c == ' ' || c == '\n' || c == '\t' || c == '\r' );
return c;
}
void fun( FILE *stream, FILE *out ) {
int counter = -1;
char c;
do {
c = get_char(stream);
if ( c == EOF )
break;
if ( c != '<' ) { // print text
for ( int i = counter + 1; i; --i )
putc( ' ', out );
fprintf( out, "TEXT: " );
do {
if ( c == '\n' )
fprintf( out, "<BR>" ); // random separator
else
putc( c, out );
c = getc( stream );
} while ( c != '<' );
putc( '\n', out );
}
c = getc( stream );
if ( c != '/' ) { // nest deeper
++counter;
for ( int i = counter; i; --i )
putc( ' ', out );
} else { // go back in nesting
--counter;
// maybe here should be some exception handling
do // assuming there's no strings in quotation marks here
c = getc( stream );
while ( c != '>' );
continue;
}
ungetc( c, stream );
do { // reading tag
c = getc(stream);
if( c == '/' ) { // checking if it's not a <blahblah/>
c = getc(stream);
if ( c == '>' ) {
--counter;
break;
}
putc( '/', out );
putc( c, out );
} else if ( c == '"' ) { // not parsing strings put in quotation marks
do {
putc( c, out ); c = getc( stream );
if ( c == '\\' ) {
putc( c, out ); c = getc( stream );
if ( c == '"' ) {
putc( c, out ); c = getc( stream );
}
}
} while ( c != '"' );
putc( c, out );
} else if ( c == '>' ) { // end of tag
break;
} else // standard procedure
putc( c, out );
} while ( true );
putc( '\n', out );
} while (true);
fprintf( out, "Counter: %d", counter );
}
int main() {
const char *name = "rfb.html";
const char *oname = "out.txt";
FILE *file = fopen(name, "r");
FILE *out = fopen(oname, "w");
fun( file, out );
return 0;
}
答案 0 :(得分:1)
HTML!= XML
标签可以是非关闭的,例如<img ...>
被视为等于<img ... />
答案 1 :(得分:0)
这样有趣且有用的话题,几乎没有答案。真奇怪......
很难找到好的C ++ HTML解析器!我试着引导正确的方向......它可能会帮助你继续前进......
Lib curl页面有一些源代码可以让你前进。穿过dom树的文件。您不需要xml解析器。在格式错误的HTML上不会失败。
http://curl.haxx.se/libcurl/c/htmltidy.html
另一种选择是htmlcxx。来自网站描述:
htmlcxx是一个简单的非验证css1和C ++的html解析器。
可以尝试像tidyHTML这样的库 - http://tidy.sourceforge.net(免费)
如果您使用的是Qt 4.6,则可以使用QWebElement。一个简单的例子:
的帧 - &GT; setHtml(HTML); QWebElement document = frame-&gt; documentElement(); QList imgs = document.findAll(“img”); 这是另一个例子。 http://doc.qt.digia.com/4.6/webkit-simpleselector.html