如何将 std::cout 消息打印到 QLabel 或 QTextBrowser

发布于 2024-11-15 11:14:12 字数 85 浏览 2 评论 0原文

我正在尝试将所有控制台输出消息打印到 QLabel 或 QTextBrowser。 有谁知道该怎么做?

感谢您的帮助,

简历

Am trying to print all console output messages to a QLabel or QTextBrowser.
Does anyone know how to do this?

Thanks for any help,

CV

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

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

发布评论

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

评论(1

混吃等死 2024-11-22 11:14:12

我在 http://lists.trolltech.com/ 找到了解决方案qt-interest/2005-06/thread00166-0.html 允许使用如下语法:

QDebugStream qout(std::cout, myTextEdit);
std::cout << "Send this to the Text Edit!" << endl;

我希望这对您有用。如果这不完全是您的意思,也许您可​​以根据您的具体情况进行调整。

I found a solution at http://lists.trolltech.com/qt-interest/2005-06/thread00166-0.html that allows for a syntax like:

QDebugStream qout(std::cout, myTextEdit);
std::cout << "Send this to the Text Edit!" << endl;

I hope this will be useful for you. If it is not exactly what you mean, probably you can adapt it to your exact case.

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