5

我想在 QT C++ 程序中使用 python 解释器,我尝试使用 QProcess 打开 python 控制台:

QProcess shell; // this is declared in the class .h file

shell.start("python");
connect(&shell,SIGNAL(readyRead()),SLOT(shellOutput()));
shell.write("print 'hello!'\n");

但是我没有捕捉到任何输出,我在哪里弄错了,或者有更好的方法吗?

4

2 回答 2

4

我编写了一个非常简约的程序,可以满足您的期望。下面是代码:

主窗口.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!当按下按钮时,这些东西一起显示出一种激励。

于 2012-08-12T12:58:43.827 回答
1

我发现出了什么问题...

python 解释器必须以 -i 参数开头: python -i

否则它不会对标准输出和输入做出反应。

我很好奇它在没有 -i 的情况下有什么用

于 2012-08-20T13:12:57.950 回答