Qt每天一例2.在文件末尾追加字符串
Posted 鱼酱2333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt每天一例2.在文件末尾追加字符串相关的知识,希望对你有一定的参考价值。
需求:在文件末尾追加字符串
#include <QCoreApplication>
#include <QFile>
void demo()
//声明文件对象
QFile file;
//设置文件路径
file.setFileName("c:/1.txt");
//打开 设置读写权限
if(file.open(QIODevice::ReadWrite | QIODevice::Text))
//移动到文件末端
file.seek(file.size());
//写文件
file.write("helloworld");
//关闭
file.close();
int main(int argc, char *argv[])
QCoreApplication a(argc, argv);
demo();
return a.exec();
以上是关于Qt每天一例2.在文件末尾追加字符串的主要内容,如果未能解决你的问题,请参考以下文章