5

我想知道如何在 PySide 中捕获 QProcess 运行的命令的输出,以便显示它。

4

2 回答 2

3

我最终使用了这个:

  # Create runner
  self.runner = QProcess(self)
  # Make sure newInfo gets all output
  self.runner.readyReadStandardError.connect(self.newErrInfo)
  # Run the command
  self.runner.start(command)
  # Once it's started set message to Converting
  self.parentWidget().statusBar().showMessage("Converting.")

然后在课堂上:

def newErrInfo(self):
  newString = str(self.runner.readAllStandardError())
  print(newString, end=" ")

readAllStandardOutput() 也适用于标准输出

于 2012-05-19T13:56:30.230 回答
2
 QProcess qp;
 qp.start("Yourcode");
 qp.waitForFinished();
 qDebug() << "qp:" << qp.readAll();

对于实时阅读,您可以使用canReadLine()readyread()waitforreadyread()waitforbyteswritten( ) 等函数。

在信号槽机制中使用这些函数来实时捕获数据。

于 2012-05-18T17:57:52.307 回答