我编写了一个非常简约的程序,可以满足您的期望。下面是代码:
主窗口.hpp
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
#include <QtGui>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
private slots:
void onReadyRead();
void onPushButtonClicked();
private:
QPushButton* pushButton;
QProcess *shell;
};
#endif // MAINWINDOW_HPP
主文件
#include <QtCore>
#include <QtGui>
#include <QDebug>
#include "mainwindow.hpp"
MainWindow::MainWindow(QWidget* parent)
: QMainWindow(parent)
{
pushButton = new QPushButton("Execute");
connect(pushButton, SIGNAL(clicked()),
this, SLOT(onPushButtonClicked()));
setCentralWidget(pushButton);
}
void MainWindow::onPushButtonClicked()
{
shell = new QProcess(this);
connect(shell, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
shell->start("python");
if (!shell->waitForStarted())
exit(1);
shell->write("print 'hello!'\n");
shell->closeWriteChannel();
if (!shell->waitForFinished())
exit(1);
qDebug() << "Shell error code:" << shell->error();
}
void MainWindow::onReadyRead()
{
QString text = shell->readAll();
qDebug() << text;
}
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
MainWindow win;
win.show();
return app.exec();
}
实施说明:
- 我通过添加
QProces::waitFor...()
.
- 我关闭了与 的沟通渠道
QProcess::closeWriteChannel()
。
- 我添加了一些调试输出,尤其是错误代码
QProcess
非常有帮助。
hello!
当按下按钮时,这些东西一起显示出一种激励。