本文主要是介绍(Qt) 获取系统详细版本号 OS Build,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
直接通过调用管道命令行,但是会有一个黑框(控制台)闪过
#include <stdlib.h>
#include <stdio.h>#include <iostream>
using namespace std ;
// 描述:execmd函数执行命令,并将结果存储到result字符串数组中
// 参数:cmd表示要执行的命令
// result是执行的结果存储的字符串数组
// 函数执行成功返回1,失败返回0
int execmd(char* cmd,char* result) {char buffer[128]; //定义缓冲区FILE* pipe = _popen(cmd, "rt"); //打开管道,并执行命令if (!pipe)return 0; //返回0表示运行失败while(!feof(pipe)) {if(fgets(buffer, 128, pipe)){ //将管道输出到result中strcat(result,buffer);}}_pclose(pipe); //关闭管道return 1; //返回1表示运行成功
}void getVer(){char result[1024*4]=""; //定义存放结果的字符串数组char cmdline[100] = "ver";if(1==execmd(cmdline,result)){//printf(result);qDebug() << QString(result);}//system("pause"); //暂停以查看结果
}
通过QProcess调用
#include <windows.h>
#include <stdio.h>
#include <QProcess>
QString getWindowsBuildVersion()
{QProcess p(0);p.start("systeminfo");p.waitForStarted();p.waitForFinished();QString sysinfo = QString::fromLocal8Bit(p.readAllStandardOutput());std::string temp = sysinfo.toStdString();temp = temp.substr(temp.find("OS Version:"),temp.find("OS Manufacturer:")-temp.find("OS Version:"));temp = temp.substr(temp.find("10.0."),10);return QString::fromStdString(temp);}
该方法需要自己先判断系统为win10,判断方法看前文。
这篇关于(Qt) 获取系统详细版本号 OS Build的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!