Qfile 读取大html文件内容 读取成QString
时间: 2023-05-28 08:02:11 浏览: 121
html文件的读取
3星 · 编辑精心推荐
1. 使用QFile对象打开HTML文件
QFile file("path/to/file.html");
if(file.open(QIODevice::ReadOnly | QIODevice::Text)) {
// Read the file contents
}
2. 读取文件内容到QString对象
QString contents;
while (!file.atEnd()) {
contents += file.readLine();
}
3. 关闭文件
file.close();
完整代码如下:
QFile file("path/to/file.html");
if(file.open(QIODevice::ReadOnly | QIODevice::Text)) {
QString contents;
while (!file.atEnd()) {
contents += file.readLine();
}
file.close();
// Do something with the contents
} else {
qDebug() << "Failed to open file";
}
阅读全文