QString exePath = QCoreApplication::applicationDirPath(); //获取要启动的另一个exe路径exePath = exePath + “/OffLineProcess.exe”; //路径+exe名称QProcess* Process = new QProcess; //创建新的进程Process->start(exePath); //在当前程序中启动新的exe程序if (!Process->waitForStarted(1000)) /...