从 Qt 字符串打开文件
我正在制作一个 Qt 应用程序,并且有一个用于打开文件的按钮,该文件连接到自定义插槽。这是到目前为止的槽代码:
void MainWindow::file_dialog() {
const QFileDialog *fd;
const QString filename = fd->getOpenFileName();
}
我怎样才能将文件名转换为 const char *,打开文件,读取它并将文本存储在 QString 中,然后关闭文件。我正在使用Qt4。
I am making a Qt application and I have a button to open a file, which is connected to a custom slot. This is the slot code so far:
void MainWindow::file_dialog() {
const QFileDialog *fd;
const QString filename = fd->getOpenFileName();
}
How could I have it then convert the file name to a const char *
, open the file, read it and store the text in a QString, and then close the file. I am using Qt4.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要读取文件的内容,您可以执行此操作:
To read the contents of a file, you can do this: