赞
踩
Qt提供了丰富的API来处理文件读写操作,使得读写文件变得简单。
QFile file("example.txt");
if (file.open(QIODevice::ReadOnly)) {
qint64 offset = 100; // 定义偏移量
if (file.seek(offset)) { // 移动到指定的偏移位置
QByteArray data = file.read(12); // 从该位置读取12个字节的数据
qDebug() << data;
}
file.close();
}
QFile file("example.txt");
if (file.open(QIODevice::ReadWrite
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。