1

如何在运行时将自定义 HTML 文件加载到 QTextEdit 中?

4

1 回答 1

1

一种非常简单的方法。一定要检查文档,寻找错误条件,等等。此外,可能有一种比一次读一行更快的方法。

QFile file( file_name );
QTextStream stream( &file );
QString string;
while( !stream.atEnd() )
{
    stream >> string;
    ui_textEdit->insertHtml( string );
}
于 2009-12-07T19:45:43.897 回答