如何在QT中的QTextBrowser中追加文本?

发布于 2024-12-26 19:47:37 字数 212 浏览 3 评论 0原文

我创建了一个 QTextBrowser 来显示大量数据(实际上显示运行时日志),这些数据是在另一个进程中动态生成的。

我发现我可以使用 fopen("log.html","a") 将数据附加到实际日志文件中,然后每次都 reload()它已更新,但我认为这效率不高,甚至可能不明智。

我想知道是否有一种巧妙的方法来实现这一点。

I have created a QTextBrowser to display a large amount of data (actually displaying the run time log), which is dynamically generated in another processes.

I have found out that I can use fopen("log.html","a") to append data to an actually log file, and reload() it every time it's updated, but I think that's not efficient, or even possibly unwise.

I wonder if there's a neat way to implement this.

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

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

发布评论

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

评论(2

鯉魚旗 2025-01-02 19:47:37

QTextBrowser 继承 QTextEdit,因此您可以使用 QTextEdit::append

void QTextEdit::append ( const QString & text )

QTextBrowser inherits QTextEdit, so you can use QTextEdit::append:

void QTextEdit::append ( const QString & text )
小姐丶请自重 2025-01-02 19:47:37

写到一半,补充 TonyK 的答案:

也许是 append 方法是您要找的吗?

将带有文本的新段落附加到文本编辑的末尾。附加的新段落将具有与当前段落相同的字符格式和块格式,由光标的位置决定。另请参见 currentCharFormat() 和 QTextCursor::blockFormat()。

Got half way through writing this, supplemental to TonyK's answer:

Perhaps the append Method is what you're looking for?

Appends a new paragraph with text to the end of the text edit. The new paragraph appended will have the same character format and block format as the current paragraph, determined by the position of the cursor. See also currentCharFormat() and QTextCursor::blockFormat().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文