C程序命令行解析以及Qt命令行解析之QCommandLineParser
Qt命令行解析之QCommandLineParser、QCommandLineOption
简介
我们日常使用的软件很多都支持命令行,即程序参数输入。很多时候因为我们在图形界面下忽略有这么个东西,对于开发一些arm端软件的时候,加入一些执行参数有时候很有作用。
C程序命令行介绍
对于纯c软件,也会有使用命令行输入的场景,下面我们来看一个例子:
int main(int argc, char *argv[])
{
if (!strncmp(argv[1], "-h", 2)) {
printf("\n\n/Usage:./sample_demo <index>/\n");
printf("\t1: do somthing...\n");
}
if (*argv[1] == '1'))
{
//执行你的程序
}
return 0;
}
假如上面执行程序叫demo,那么执行demo -h将会打印
Usage:./sample_demo <index>
\t1: do somthing...
相当于程序执行说明提示。
执行./demo 1,就会进入程序任务。
Qt命令行介绍
万能的Qt提供了一套命令行解析类,QCommandLineParser、QCommandLineOption
一般使用QCommandLineOption会和QCommandLineParser配合使用。
QCommandLineParser类
符号-后面的参数选项的解析方式:eg:-abc
SingleDashWordOptionMode | 说明 |
---|---|
ParseAsCompactedShortOptions | 解析为 -a -b -c |
ParseAsLongOptions | 解析为 -abc |
位置参数之后的选项参数的解析方式:
OptionsAfterPositionalArgumentsMode | 说明 |
---|---|
ParseAsOptions | 解析为另外的选项参数 |
ParseAsPositionalArguments | 解析为另外的位置参数,并不作为选项参数 |
QCommandLineOption类
QCommandLineOption(const QStringList &names, const QString &description,const QString &valueName = QString(), const QString &defaultValue = QString());
names:参数选项的名称
description:参数选项的描述
valueName :参数选项的取值
defaultValue :参数选项的默认值
使用例程
#include <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QDebug>
#include "demowidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QApplication::setApplicationName("命令行测试程序");
QApplication::setApplicationVersion("V1.0.0");
QCommandLineParser cmdParser;
cmdParser.setApplicationDescription("命令行帮助说明"); //应用描述,在帮助说明里展示
cmdParser.addHelpOption();
cmdParser.addVersionOption();
QCommandLineOption timeOption(QStringList() << "t" << "time", "display current time.");
QCommandLineOption picOption(QStringList() << "p" << "picture", "draw a picture on window.","PATH");
QCommandLineOption fullscreenOption(QStringList() << "f" << "fullscreen", "Take a screenshot the whole screen.");
cmdParser.addOption(timeOption);
cmdParser.addOption(picOption);
cmdParser.addOption(fullscreenOption);
cmdParser.process(a);
DemoWidget w;
w.show();
if(cmdParser.isSet(timeOption))
{
qWarning("time now");
w.displayTime();
}
else if(cmdParser.isSet("p"))
{
qWarning("draw a picture.");
w.drawPicture(cmdParser.value("p"));
}
else if(cmdParser.isSet("f"))
{
qWarning("window fullscreen.");
w.windowfullScreen();
}
return a.exec();
}
这里加了3个参数选项,
-t,时间显示
-p,图片显示
-f,全屏显示
我们可以在qtcreator下加入执行参数
运行结果:
当然我们也可以在windos下的dos命令行下执行,前提是把程序需要用到的qt库拷贝到执行目录:
1.时间显示 cmdline.exe -t
2.图片显示 cmdline.exe -p C:\Users\Administrator\Desktop\cmd\add.jpg
3.全屏显示 cmdline.exe -f
使用Qt的命令解析还是很方便的。写一些终端执行程序的时候非常使用。
在此我把完整demo上传:https://download.csdn.net/download/haohaohaihuai/12419982
作者:费码程序猿
欢迎技术交流:QQ:255895056
转载请注明出处,如有不当欢迎指正