如何从文件中读取数据并在 QT 的 QEditText 框中显示

Posted

技术标签:

【中文标题】如何从文件中读取数据并在 QT 的 QEditText 框中显示【英文标题】:How to read data from file and display in QEditText box in QT 【发布时间】:2009-11-24 05:45:14 【问题描述】:

我想从文本文件中读取一行数据并在文本编辑框中显示该数据

【问题讨论】:

【参考方案1】:

其实很简单:

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *


FILENAME = 'textedit_example.py'


class Form(QDialog):
    def __init__(self, parent=None):
        super(Form, self).__init__(parent)
        self.edit = QTextEdit()
        layout = QVBoxLayout()
        layout.addWidget(self.edit)
        self.setLayout(layout)

        self.edit.setText("No file found")

        with open(FILENAME) as f:
            self.edit.setText(f.readline())


app = QApplication(sys.argv)
form = Form()
form.show()
app.exec_()

一些注意事项:

    将其保存为“textedit_example.py”并运行。您将在文本框中看到源代码的第一行 (import sys) 它需要 Python 2.6 和最新的 PyQt4 才能运行

【讨论】:

【参考方案2】:

您可能有兴趣查看本教程

Simple Text Viewer Example

【讨论】:

以上是关于如何从文件中读取数据并在 QT 的 QEditText 框中显示的主要内容,如果未能解决你的问题,请参考以下文章

如何从文件中读取原始文件并在 String.format 中使用

如何从文件中读取两行并在 for 循环中创建动态键?

当我们从 s3 中的 csv 文件读取数据并在 aws athena 中创建表时如何跳过标题。

Qt Multimedia - 如何强制从媒体文件中读取标签

PHP如何把数据写入JSON文件并在另一PHP文件读取JSON数据?

如何使用 Qt 从磁盘读取 XML 文件?