- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 PyQt5 GUI 应用程序,想要执行外部程序并在 QTextEdit 小部件上显示外部程序的 stdout、stderr 和 stdin。我已经设法对标准输出和标准错误执行此操作。我需要有关外部进程的标准输入的帮助。
想象一下以下片段
self.te = QTextEdit(self)
self.te.move(self.x0, 150)
self.te.resize(self.mainWinWidth - 100, self.mainWinHeight - 200)
以及让 QProcess 运行的代码片段...
self.process = QtCore.QProcess(self)
self.process.setProcessChannelMode( QProcess.MergedChannels )
self.process.readyRead.connect(self.readReady)
# ... and elsewhere I start the sub process like
os.environ["PYTHONUNBUFFERED"] = "1"
self.process.start('./goo', [])
和 readReady() 实现为:
def readReady(self):
cursor = self.te.textCursor()
cursor.movePosition(cursor.End)
cursor.insertText(str(self.process.readAll(), 'utf-8'))
self.te.ensureCursorVisible()
goo(1) 是一个基本子流程,实现为
#!/usr/bin/python3
import time
import sys
for i in range(0,5):
print(f"============ {i} ===")
time.sleep(1)
sys.stderr.write("Testing stderr...\n")
print("Enter name:")
name = sys.stdin.readline()
print(f"Got {name}")
话虽如此,我确实看到 stdout 和 stderr 都工作正常。我还看到“输入名称:”,但是当我在 QTextEdit 上输入“joe”或“moe”时,没有任何反应,即后端子进程仍在等待。
所以看来我需要一个事件处理程序来进行写入。也就是说,当子进程(通过 QProcess)等待其标准输入上的输入时,我需要检测它并以某种方式从 QTextEdit (来自用户)读取该输入,然后将其提供给子进程(即写入其标准输入)。
想想 ssh 或 telnet 或 xterm。货架上没有这个小部件吗?
最佳答案
您必须使用write()
QProcess方法:
├── goo
└── main.py
import os
import sys
from PyQt5 import QtCore, QtGui, QtWidgets
class Widget(QtWidgets.QWidget):
def __init__(self, parent=None):
super().__init__(parent)
self._textedit = QtWidgets.QTextEdit(readOnly=True)
self._lineedit = QtWidgets.QLineEdit()
self._pushbutton = QtWidgets.QPushButton("Send")
self._pushbutton.clicked.connect(self.on_clicked)
lay = QtWidgets.QGridLayout(self)
lay.addWidget(self._textedit, 0, 0, 1, 2)
lay.addWidget(self._lineedit, 1, 0)
lay.addWidget(self._pushbutton, 1, 1)
self._process = QtCore.QProcess(self)
self._process.setProcessChannelMode(QtCore.QProcess.MergedChannels)
self._process.readyRead.connect(self.on_readReady)
current_dir = os.path.dirname(os.path.realpath(__file__))
self._process.start(os.path.join(current_dir, "goo"))
@QtCore.pyqtSlot()
def on_readReady(self):
cursor = self._textedit.textCursor()
cursor.movePosition(QtGui.QTextCursor.End)
cursor.insertText(str(self._process.readAll(), "utf-8"))
self._textedit.ensureCursorVisible()
@QtCore.pyqtSlot()
def on_clicked(self):
text = self._lineedit.text() + "\n"
self._process.write(text.encode())
if __name__ == "__main__":
os.environ["PYTHONUNBUFFERED"] = "1"
app = QtWidgets.QApplication(sys.argv)
w = Widget()
w.show()
sys.exit(app.exec_())
关于python - PyQt5 如何从 QProcess 读取/写入 QProcess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58846237/
我有这个代码 var myChart = new FusionCharts("../themes/clean/charts/hbullet.swf", "myChartId", "400", "75
既然写入是立即进行的(复制到内核缓冲区并返回),那么使用 io_submit 进行写入有什么好处? 事实上,它 (aio/io_submit) 看起来更糟,因为您必须在堆上分配写入缓冲区并且不能使用基
我正在使用 mootool 的 Request.JSON 从 Twitter 检索推文。收到它后,我将写入目标 div 的 .innerHTML 属性。当我在本地将其作为文件进行测试时,即 file:
最终,我想将 Vertica DB 中的数据抓取到 Spark 中,训练机器学习模型,进行预测,并将这些预测存储到另一个 Vertica DB 中。 当前的问题是确定流程最后部分的瓶颈:将 Spark
我使用 WEKA 库编写了一个 Java 程序, 训练分类算法 使用经过训练的算法对未标记的数据集运行预测 将结果写入 .csv 文件 问题在于它当前写出离散分类结果(即算法猜测一行属于哪个类别)。我
背景 - 我正在考虑使用 clickonce 通过 clickonce(通过网站)部署 WinForms 应用程序。相对简单的应用程序的要素是: - 它是一个可执行文件和一个数据库文件(sqlite)
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
我正在读取 JSON 文件,取出值并进行一些更改。 基本上我向数组添加了一些值。之后我想将其写回到文件中。当我将 JSONArray 写回文件时,会被写入字符串而不是 JSONArray 对象。怎样才
我为两个应用程序使用嵌入式数据库,其中一个是服务器,另一个是客户端。客户端应用程序。可以向服务器端发送获取数据请求以检索数据并显示在表格(或其他)中。问题是这样的:如何将获取的数据保存(写入)到页面文
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
从问题得出问题:找到所有 result = new ArrayList(); for (int i = 2; i >(i%8) & 0x1) == 0) { result.add(i
由于某种原因,它没有写入 CSV。谁能明白为什么它不写吗? def main(): list_of_emails = read_email_csv() #read input file, cr
关闭。 这个问题是 not reproducible or was caused by typos 。它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能在这里出现,
我目前正在开发一个保存和加载程序,但我无法获得正确的结果。 编写程序: #include #include #define FILENAME "Save" #define COUNT 6 type
import java.io.*; public class Main2 { public static void main(String[] args) throws Exception {
我需要使用预定义位置字符串“Office”从所有日历中检索所有 iOS 事件,然后将结果写入 NSLog 和 UITextView。 到目前为止,这是我的代码: #import "ViewCo
我正在尝试将 BOOL 值写入 PFInstallation 中的列,但会不停地崩溃: - (IBAction)pushSwitch:(id)sender { NSUserDefaults *push
我以前在学校学过一些简单的数据库编程,但现在我正在尝试学习最佳实践,因为我正在编写更复杂的应用程序。写入 MySQL 数据库并不难,但我想知道让分布式应用程序写入 Amazon EC2 上的远程数据库
是否可以写回到ResourceBundle?目前我正在使用 ResourceBundle 来存储信息,在运行时使用以下内容读取信息 while(ResourceBundle.getBundle("bu
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我是一名优秀的程序员,十分优秀!