Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Qt 读取二进制文件。我用对象读取文件QFile,但有时我需要返回文件开头并再次读取文件,但我不知道该怎么做。
QFile
您可以seek在文件上使用该功能:
seek
file.seek(0);
如果您正在使用 a 读取文件QTextStream,则应seek在流上使用该函数。
QTextStream