异度部落格

学习是一种生活态度。

0%

Qt编程技巧 QTextBrowser显示文件内容

QTextBrowser是一个文本显示类,功能还是很强大的

下面的代码简单的实现了,QTextBrowser显示文本

1
2
3
4
5
QFile file("file.html");
if(!file.open(QFile::ReadOnly | QFile::Text))
qDebug() << "Can not open";
QTextStream in(&file);
licenceTextBrowser->setHtml(in.readAll());