//获取保存路径 QString savepath = QFileDialog::getSaveFileName(this); //创建文件对象 QFile file(savepath); if(!file.open(QIODevice::ReadWrite)) //读写方式打开 { ui->statusBar->showMessage("打开文件失败"); return; } QString msg = ui->textEdit->toPlainText(); //写文件 file.write(msg.toUtf8()); file.close();
相关文章
- 03-19Qt文件中的“另存为”
- 03-19QT编程中的char*,wchar_t*与QString之间的转换
- 03-19Qt中类型之间的转换
- 03-19Qt中QLocale的使用
- 03-19不让应用的日志输出到message文件中
- 03-19python中csv文件的读取问题
- 03-19如何更改MyEclipse中XML文件的字体?
- 03-19matlab :对文件夹中的图像进行批量处理
- 03-19opencv如何载入内存中的图像文件
- 03-19jquery中的ajax基本使用以及文件上传