在textedit Qt C ++中读取文本文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在textedit Qt C ++中读取文本文件相关的知识,希望对你有一定的参考价值。

我有这个文本文件:

Name 1      Email 1
Name 2      Email 2
Name 3      Email 3
Name 4      Email 4
Name 5      Email 5

这是一份包含电子邮件的员工列表。我想在一个对话框窗口中创建一个列表,其中显示了它们的名称。我认为这是在对话框窗口上打印出文本文件的好方法,但它不起作用。

employees_dialog.cpp

#include "employees_dialog.h"
#include "ui_employees_dialog.h"
#include <QtCore/QFile>
#include <QtCore/QTextStream>


employees_dialog::employees_dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::employees_dialog)
{
    ui->setupUi(this);
    getTextFile();
}

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

void employees_dialog::getTextFile()
{
    QFile myFile(":/employees.txt");
    myFile.open(QIODevice::ReadOnly);
    QTextStream textStream(&myFile);
    QString line = textStream.readAll();
    myFile.close();
    ui->textEdit->setPlainText(line);
}

这是头文件。

#ifndef EMPLOYEES_DIALOG_H
#define EMPLOYEES_DIALOG_H

#include <QDialog>

namespace Ui {
    class employees_dialog;
}

class employees_dialog : public QDialog
{
    Q_OBJECT

public:
    explicit employees_dialog(QWidget *parent = 0);
    ~employees_dialog();

private slots:

private:
    Ui::employees_dialog *ui;
    void getTextFile();
};

#endif // EMPLOYEES_DIALOG_H

因此UI中的textEdit应该显示文本文件。但它只是空白。我在Qt Resources File中有该文件。调试器没有给出任何错误,应用程序本身工作正常,但文本不会出现在textEdit中。

顺便说一下,我是Qt的新手。

答案

用这个:

QFile file( "myfile.txt" );

if ( !file.exists() )
{
    qDebug()<<"doesn't exist the file";
}

以上是关于在textedit Qt C ++中读取文本文件的主要内容,如果未能解决你的问题,请参考以下文章

C语言数据读取

在pyQt的textEdit中打开文本文件

在 C 中向后读取文本文件

如何在 C 中读取和覆盖文本文件?

在 C 中,我应该如何读取文本文件并打印所有字符串

如何在c中读取二进制文件? (视频、图像或文本)