一、UI界面设置两个按键,并直接转到槽函数
二、两种代码展示
#include <QFile>
#include <QDebug>//此两种方式中调用函数,应包含的头文件
void Widget::on_btnReadFile01_clicked()//第一种打开方式
{
//1. 打开文件
QFile file;
file.setFileName("D:/QT project/onetext.txt");
if(!file.open(QIODevice::ReadOnly | QIODevice::Text)){
qDebug() << "file open error";
}
//2. 读取文件
char context[100] = {'\0'};
if( file.read(context,100) == -1) return;
//3. 输出文件内容
qDebug() << context;
file.close();
}
void Widget::on_btnReadFile02_clicked()//第二种打开方式
{
QFile file("D:/QT project/onetext.txt");
file.open(QIODevice::ReadOnly | QIODevice::Text);
//2、读取文件
char context[100] = {'\0'};
file.read(context,100);
//3. 输出文件内容
qDebug() << context;
file.close();
}
三、最终演示结果
创建两个txt文件不知道为什么打不开,我就把两种方法都设置为打开一个文件了,如果大家可以接连打开两个文件,可以后台私信我,我也想学习
最终演示视频