写:
1 2 3 4 5 6 7 8 9 |
QString strFilePathName = "C:\abc.txt"; QFile data(strFilePathName); if (data.open(QFile::WriteOnly | QIODevice::Text))//| QIODevice::Truncate { QTextStream out(&data); out << "hello" << endl; out << "2nd line" << endl; out << "3rd line" << endl; } |