qt如何将qstring写入txt文件
时间: 2024-05-11 13:15:01 浏览: 234
Qt txt文件读写
4星 · 用户满意度95%
您可以使用QFile和QTextStream类将QString写入txt文件。首先,您需要使用QFile打开一个txt文件,然后使用QTextStream来写入数据。下面是一个简单的示例代码:
```c++
QString str = "Hello, world!";
QFile file("example.txt");
if(file.open(QIODevice::WriteOnly | QIODevice::Text))
{
QTextStream out(&file);
out << str << endl;
file.close();
}
```
在这个示例中,我们将字符串"Hello, world!"写入一个名为"example.txt"的txt文件中。请注意,我们使用了QIODevice::Text选项来确保我们在写入字符串时使用正确的文本格式。
阅读全文