qt打开一个exe文件

qt打开一个exe文件 

#include <QProcess>
QString program = "C:/Program Files/MATLAB/R2017a/bin/matlab.exe";
QStringList arguments;
QProcess *myProcess = new QProcess(parent);
myProcess->start(program, arguments);

 

    原文作者:Y_Hungry
    原文地址: https://blog.csdn.net/weixin_41012767/article/details/111210938
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞