- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试从我在 Linux 中运行的 Qt 应用程序运行命令行程序 gphoto2,并读取它输出到标准输出和标准错误的结果。此概念验证程序中的 GUI 是一个按钮和一个标签,用于显示标准错误和标准输出的输出。
我无法将 QtProcess::Finished 信号连接到正确的插槽。我从标题、连接语句和函数中的 Finished() 信号文档中复制了参数列表。函数名称以 MainWindow::类标识符为前缀。我已经没有什么可以尝试的了,我希望 StackOverflow 中的某个人能够指出这个问题。
The Header file:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QString>
#include <QProcess>
#include <QObject>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void reply2();
private slots:
void on_pushButton_clicked();
void on_cameraControlExit(int exitCode, QProcess::ExitStatus exitStatus);
private:
Ui::MainWindow *ui;
QProcess* cameraControl;
};
#endif // MAINWINDOW_H
主窗口.cpp文件
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QProcess>
#include <QShortcut>
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
cameraControl = new QProcess(this);
}
MainWindow::~MainWindow()
{
delete ui;
cameraControl->close();
delete cameraControl;
}
void MainWindow::on_pushButton_clicked()
{
// connect the camera control finished signal to the slot that will read the exit code and
// place the std output string from the process into a label on the form
connect(cameraControl, SIGNAL(finished(int , QProcess::ExitStatus )),
this, SLOT(MainWindow::on_cameraControlExit(int exitCode, QProcess::ExitStatus exitStatus)));
// Disable the ui button do we don't get double presses
ui->pushButton->setDisabled(true);
// setup the gphoto2 arguments list
QStringList args;
args.append("--capture-image-and-download");
// start the camera control
cameraControl->start("gphoto2",args);
// // wait for the process to finish or 30 seconds whichever comes first
cameraControl->waitForFinished(30000);
}
void MainWindow::on_cameraControlExit(int exitCode, QProcess::ExitStatus exitStatus)
{
qDebug() << cameraControl->errorString();
qDebug() << cameraControl->readAllStandardError();
qDebug() << cameraControl->readAllStandardOutput();
ui->pushButton->setEnabled(true);
}
最佳答案
或者使用 C++14(现代编译器)
QObject::connect(cameraControl, qOverload<int, QProcess::ExitStatus >(&QProcess::finished), this, &MainWindow::on_cameraControlExit);
或者在Qt5 convention :
QObject::connect(cameraControl, static_cast<void(QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), this, &MainWindow::on_cameraControlExit);
关于c++ - Qt 没有用于 QProcess::finished() 信号的插槽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12534367/
第一次在stackoverflow上提问。而且我是一个中国女孩,如果我对这个问题的描述有太多的语法错误,以至于你不能轻易理解,我很抱歉。下面是我的问题:头文件: class AdbDriver : p
我正在使用 QProcess 来运行其他程序。但是当我在调用 QProcess.start() 后退出我的应用程序时,它在调试控制台中说: QProcess: Destroyed while proc
我想运行一个 qprocess(程序 adb),当该过程完成时将结果返回给调用函数。但是,adb 很有可能会发现自己陷入循环,将诸如“ADB 服务器未确认”之类的错误消息打印到标准输出,而永远不会完成
我有一个 PyQt5 GUI 应用程序,想要执行外部程序并在 QTextEdit 小部件上显示外部程序的 stdout、stderr 和 stdin。我已经设法对标准输出和标准错误执行此操作。我需要有
Qt 文档给出了这样的解释: QProcess::开始: Starts the given program in a new process, if none is already running,
我阅读了一些文档,但对我来说还不够清楚。我知道“结束”进程和 kill() 都是为了强制它结束,但是 terminate() 应该做什么呢? 最佳答案 不知道你有没有写清楚: void QProces
我正在尝试将序列化图像传递到我在 Qt 程序中启动的进程。但是,这样做时我收到此错误消息: QObject::connect: Cannot queue arguments of type 'QPro
平台:Windows10我使用 QProcess::start 执行 Python 文件(在同一个目录中),但是我 无法从 readAllStandardOutput 函数获取结果。 Python文件
我有以下代码: proc = new QProcess(); proc->startDetached("C:\\ffmpeg.exe", QStringList() <<"-i"<< "C:\\pic
平台:Qt 4.8.2,Win 7 请考虑以下逻辑流程: 1. App started 2. functionA() triggered 3. the app periodically capture
A 在尝试阻止我的 QProcess 时遇到问题在它的父析构函数中。这是我的代码: AbstractProcess::~AbstractProcess() { if((m_process->s
我有一个必须暂停和恢复的 QProcess。我用 kill(pid_t(process->pid()), SIGSTOP); 和 kill(pid_t(process->pid()), SIGCONT
我尝试实现 subprocess Popen blocking PyQt GUI 的建议但似乎 onFinished 函数永远不会被调用。 class MyApp(QtWidgets.QMainWin
我有以下使用 QProcess 运行可执行文件的代码。代码运行良好,新的可执行文件运行正常。 QString fileName = ui.textBrowser_csvFile->toPlainTex
我想创建一个 QProcess 并在后台运行它。我有一个调度程序,它维护要作为 QProcesses 启动的作业队列。这些 QProcess 具有在 lsf 机器中运行的命令。要求是,一旦 QProc
我只是想通过以下源代码用 QProcess 创建一个文件: void Processmethod() { QDialog *ProcessMessage = new QDialog;
我正尝试在 QProcess 下的 Raspberry Pi (Raspbian) 中启动 CEC 命令。 如果我在我的 shell 中执行这个: echo 'standby 0' | cec-cli
一段时间以来,我一直在努力解决这个基本问题。我正在尝试从一个线程启动一个 QProcess。启动进程工作正常并且进程运行正常,但我的问题是 finished() 信号永远不会发出。 这是我的例子: 我
在我的 Qt C++ 程序中,我创建了一个进程,如下所示: myProcess = new QProcess(); myProcess->start(programpath, arguments);
出于某种原因,我无法在 Ubuntu 上使用 QProcess 启动进程,我不明白为什么... int main(int argc, char *argv[]) { //Run the pro
我是一名优秀的程序员,十分优秀!