使用QTextStreamer使用
读取QFileif(file.open(QIODevice::ReadOnly | QIODevice::Text))
{
QTextStream stream(&file);
line = stream.readLine();
但在我的要求中,我只需要从我的文件中读取特定的行集。例如:如果文件包含1034行。用户只能从第107到第300行选择要读取并显示在textBox中。
如何调整qtextStream阅读器的位置以指向文件的特定行。
现在我正在实施
int count = 4;
while(count > 0)
{
line = stream.readLine();
count --;
}
line = stream.readLine();
答案 0 :(得分:1)
QTextStream是一个流,而不是数组。那是因为你不能在不读它的情况下得到一些。
某种方式是(只是一个最简单的例子):
QFile file("file_name");
QTextStream stream(&file);
QStringList list;
int line = 0;
if(file.open(QIODevice::ReadOnly))
while(!stream.atEnd()) {
if(line == 4 || line == 5 || line == 6)
list << stream.readLine();
else
stream.readLine();
line++;
}
更难的方式:
if(file.open(QIODevice::ReadOnly)) {
QByteArray ar = file.readAll();
QByteArray str;
for(int i = 0; i < ar.size(); i++) {
if(line == 4 || line == 5 || line == 6) {
if(ar.at(i) == '\n') {
list << QString::fromUtf8(str.replace("\r", ""));
str.clear();
}
else
str += ar.at(i);
}
if(ar.at(i) == '\n')
line++;
}
}