———————进程使用———————
#include "qprocess.h"
QProcess *pro;
QProcess *pro1;
pro = new QProcess (this);
pro1 = new QProcess (this);
void MainWindow::on_pushButton_clicked()
{
QString program = "C:/Windows/System32/cmd.exe"; // 用于打开命令提示符
QStringList arguments;
arguments << "/c" << "start" << """" << "C:/Users/sw/Music/VipSongsDownload/<郭静 - 心墙>.mflac " << """"; // 在命令提示符中执行的命令,替换 <username> 和 <songname> 为实际的用户名和歌曲名,注意将路径用双引号括起来
pro->start(program, arguments); // 启动进程
}
———————代码获取查看下方———————