QProcess:没有收到运行Powershell脚本的finished()信号

时间:2015-01-10 15:57:54

标签: powershell qt5 qprocess

我正在开发一个Qt应用程序,除其他外,它在用tab文件分隔的文本中转换Excel电子表格。这是通过运行Windows Powershell脚本来完成的 我的问题是来自QProcess的finished()信号永远不会发出,尽管转换成功完成。是的,我收到stateChanged()信号。

Powershell脚本(ps_excel.ps1)

(改编自this question

param ([string]$ent = $null, [string]$sal = $null)
$xlCSV = -4158  #value for tab delimited file
$Excel = New-Object -Com Excel.Application 
$Excel.visible = $False 
$Excel.displayalerts=$False
$b = $Excel.Workbooks.Open($ent) 
$b.SaveAs($sal,$xlCSV) 
$Excel.quit()
exit 0 #tested without exit, with exit and with exit 0

Qt app header

(对于测试,最小的情况是没有其他小部件的QDialog。)

#ifndef DIALOG_H
#define DIALOG_H

#include <QDialog>
#include <QProcess>
#include <QDebug>

namespace Ui {
class Dialog;
}

class Dialog : public QDialog
{
    Q_OBJECT

    public:
    explicit Dialog(QWidget *parent = 0);
    ~Dialog();
    QProcess *proces;

    private:
        Ui::Dialog *ui;
    private slots:
        void procFinish(int estat);
        void procState(QProcess::ProcessState estat);
};

#endif // DIALOG_H

Qt app C ++

#include "dialog.h"
#include "ui_dialog.h"

Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)
{
    ui->setupUi(this);
    QString program = "C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe";
    QStringList params;
    params << "-File" << "C:/Garsineu/ps_excel.ps1" << "-ent" << "C:/Garsineu/PROVAGALATEA.xls" << "-sal" << "C:/Garsineu/PROVAGALATEA.tab";
    proces = new QProcess();
    connect(proces, SIGNAL(finished(int)), this, SLOT(procFinish(int)));
    connect(proces, SIGNAL(stateChanged(QProcess::ProcessState)), this, SLOT(procState(QProcess::ProcessState)));
    proces->start(program, params);
}

Dialog::~Dialog()
{
    delete ui;
}

void Dialog::procFinish(int estat)
{
    qDebug() << "Finished";
}

void Dialog::procState(QProcess::ProcessState estat)
{
    qDebug() << estat;
}

虽然转换成功并显示状态1(已启动)和2(正在运行),但消息&#34;已完成&#34;永远不会显示 我也尝试通过waitForFinished()方法同步执行,该方法总是超时。

环境

  • Windows 7 Professional 64位
  • Powershell v1.0 x86
  • Qt 5.4.0 with minGW491_32

感谢您的帮助。谢谢。

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。显然,Powershell不会以相同的方式从控制台运行,也不会从另一个程序(非交互式)调用。如果我在ps_excel.ps1脚本末尾添加:

Get-Process Powershell | Stop-Process

而不是

exit 0

我停止真的 Powershell并获得完成信号,QProcess :: ExitStatus = 0.