//方式一:
for (int i=0; i<argc;i++) { cout << argv[i] << endl; }
//方式二:
QStringList listCmd = qApp->arguments();
//方式三:
std::string jsonCmd = ::GetCommandLineA();
这样直接输出会丢失数据中的引号,可以使用GetCommandLine() Windows API函数。
相关:https://blog.csdn.net/hp_cpp/article/details/107489723
原文:https://www.cnblogs.com/tingtaishou/p/14693947.html