QtRuby:将 HTML 文件加载到 QTextEdit 中

发布于 2024-08-13 05:28:19 字数 41 浏览 6 评论 0原文

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

How do I load a custom HTML-file into QTextEdit while in runtime?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彩虹直至黑白 2024-08-20 05:28:19

一种非常简单的方法。请务必检查文档,查找错误情况以及其他情况。此外,可能还有比一次一行阅读更快的方法。

QFile file( file_name );
QTextStream stream( &file );
QString string;
while( !stream.atEnd() )
{
    stream >> string;
    ui_textEdit->insertHtml( string );
}

One very simple way. Be sure to check the documentation, look for error conditions, and what-not. Also, there might be a quicker way than reading it one line at a time.

QFile file( file_name );
QTextStream stream( &file );
QString string;
while( !stream.atEnd() )
{
    stream >> string;
    ui_textEdit->insertHtml( string );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文