调用exe-2
Posted wangbin-heng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用exe-2相关的知识,希望对你有一定的参考价值。
1 void CallExe::on_pushButton_clicked() 2 { 3 QProcess *process=new QProcess(this); 4 connect(process, &QProcess::readyReadStandardOutput, 5 [=] 6 { 7 QString str=process->readAllStandardOutput(); 8 ui.label->setText(str); 9 }); 10 11 //out.exe 每秒输出一个数字到控制台。现在将值输出到label上 12 process->start("../../out/Win32/Debug/out.exe"); 13 }
以上是关于调用exe-2的主要内容,如果未能解决你的问题,请参考以下文章