这是关于在C ++和Linux中使用QDataStream和QTemporaryFile的QT问题。
我在使用QDataStream进行刷新时遇到了一些问题。 QTextStream有一个flush函数,但是QDataStream显然不需要。 (引自2013年:http://www.qtcentre.org/threads/53042-QDataStream-and-flush())。我的问题是,这实际/仍然是这样,并且无论如何强制QDataStream冲洗?
当我处理使用QDataStream编写的文件时,缺少最后写入次数(一次写入5个字节时为112个字节,一次写入1个字节时为22个字节)。但是,如果我在文件末尾写入大量填充,则所有内容都存在(填充的最后几次写入除外)。这就是为什么我认为没有将QDataStream刷新到该文件。
我正在处理的文件是中等大小的原始二进制文件(大约2MB)。
这是一个使用我处理文件的一些代码的最小例子:
void read_and_process_file(QString &filename) {
QFile inputFile(filename);
if (!inputFile.open(QIODevice::ReadOnly)) {
qDebug() << "Couldn't open: " << filename;
return;
}
QDataStream fstream(&inputFile);
QTemporaryFile *tempfile = new QTemporaryFile();
if (!tempfile->open()) {
qDebug() << "Couldn't open tempfile";
return;
}
QDataStream ostream(tempfile);
while (!fstream.atEnd()) {
int block_size = 5; //The number to read at a time
char lines[block_size];
//Read from the input file
int len = fstream.readRawData(lines,block_size);
QByteArray data(lines,len);
//Will process data here once copying works
//Write to the temporary file
ostream.writeRawData(data,data.size());
}
process_file(tempfile);
delete tempfile;
}
答案 0 :(得分:2)
此答案的第一部分与将文件刷新到磁盘的问题无关。
使用!fstream.atEnd()
作为while
的条件不是一个好主意。见http://stackoverflow.com/questions/5605125/why-is-iostreameof-inside-a-loop-condition-considered-wrong。我会将while
循环更改为:
const int block_size = 5; //The number to read at a time
char lines[block_size];
int len = 0;
while ( (len = fstream.readRawData(lines,block_size)) > 0) {
QByteArray data(lines, len);
//Will process data here once copying works
//Write to the temporary file
ostream.writeRawData(data,data.size());
}
但是,我没有看到使用中间QByteArray
的意义。该循环可以简化为:
while ( (len = fstream.readRawData(lines,block_size)) > 0) {
//Write to the temporary file
ostream.writeRawData(lines, len);
}
如果您需要处理QByteArray
以获取其他内容,可以构建一个并使用它,但是对ostream.writeRawData
的调用不需要使用它。
重新。文件没有被刷新的问题,我建议使用嵌套的范围来打开文件。该文件应该在范围的末尾刷新并关闭。
void read_and_process_file(QString &filename) {
QFile inputFile(filename);
if (!inputFile.open(QIODevice::ReadOnly)) {
qDebug() << "Couldn't open: " << filename;
return;
}
QDataStream fstream(&inputFile);
QTemporaryFile *tempfile = new QTemporaryFile();
if (!tempfile->open()) {
qDebug() << "Couldn't open tempfile";
return;
}
// Create a nested scope for the QDataStream
// object so it gets flushed and closed when the
// scope ends.
{
QDataStream ostream(tempfile);
const int block_size = 5; //The number to read at a time
char lines[block_size];
int len = 0;
while ( (len = fstream.readRawData(lines,block_size)) > 0) {
QByteArray data(lines, len);
//Will process data here once copying works
//Write to the temporary file
ostream.writeRawData(lines, len);
}
// The QDataStream should be flushed and
// closed at the end of this scope.
}
process_file(tempfile);
delete tempfile;
}