Qt编程技巧 QTextBrowser显示文件内容 Posted on 2010-02-20 In 技术笔记 QTextBrowser是一个文本显示类,功能还是很强大的 下面的代码简单的实现了,QTextBrowser显示文本 12345QFile file("file.html");if(!file.open(QFile::ReadOnly | QFile::Text)) qDebug() << "Can not open";QTextStream in(&file);licenceTextBrowser->setHtml(in.readAll());