本文介绍了如何在Qt中运行系统命令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须在Qt中运行系统命令.但是我必须为该命令提供一个参数.

I have to run a system command in Qt.but I have to give an argument for that command.

例如,使用文本文件打开gedit.例如"gedit/home/oDx/Documents/a.txt"

for example opening gedit with a text file.like "gedit /home/oDx/Documents/a.txt"

,但路径"/home/oDx/Documents/a.txt"将位于"docPath"之类的变量中.那我该怎么办!?

but the path "/home/oDx/Documents/a.txt" will be in a variable like "docPath".so how can i do it!?

推荐答案

QProcess process;
process.start("gedit", QStringList() << docPath);

与上述相同

QProcess process;
process.start("gedit", QStringList() << "/home/oDx/Documents/a.txt");

此外,请阅读.

这篇关于如何在Qt中运行系统命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 23:40