我正在用Qt C++編寫一個程序來創建一種數據庫。但是,無論何時我按下按鈕,它都會覆蓋整個文件,而不是像我需要的那樣繼續執行新的一行。我真的很感激任何有關如何解決這個問題的信息。Qt C++繼續文件而不覆蓋
相關的代碼部分:
QFile file("C:/Users/brandan/Desktop/GUIPrograms/Kumon.txt");
file.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream stream(&file); //stream of information
stream << " " << endl;
stream << name << " " << month << " " << day << " " << year << " " << page << endl;
file.close();
http://qt-project.org/doc/qt-4.8/qiodevice.html #OpenModeFlag-enum – cageman
[Open QFile for appending]的可能重複(http://stackoverflow.com/questions/13856734/open-qfile-for-appending) – sashoalm