在Qt应用程序中打开并向用户显示Windows命令提示符

时间:2014-03-24 13:18:38

标签: c++ windows qt

如何打开Windows命令提示符,然后向其发送命令并将其显示给我的Qt应用程序内的用户?

我知道您可以将命令发送到命令提示符并在后台输出 而不向用户显示命令提示符,但我希望用户能够与命令提示符窗口进行交互并发送自己的命令。

1 个答案:

答案 0 :(得分:0)

找到我需要的东西:

QProcess CommandPrompt;
QStringList Arguments;

Arguments << "/K" << "echo" << "hello";
CommandPrompt.startDetached("cmd",Arguments);