OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 4424|回复: 0

《I.MX6U嵌入式Qt开发指南 V1.0》第八章 文本读写

[复制链接]

1118

主题

1129

帖子

2

精华

超级版主

Rank: 8Rank: 8

积分
4672
金钱
4672
注册时间
2019-5-8
在线时间
1224 小时
发表于 2021-7-12 11:50:26 | 显示全部楼层 |阅读模式
本帖最后由 正点原子运营 于 2021-7-12 11:52 编辑

1)实验平台:正点原子阿尔法Linux开发板
2)  章节摘自【正点原子】《I.MX6U嵌入式Qt开发指南 V1.0》
3)购买链接:https://detail.tmall.com/item.htm?id=609033604451
4)全套实验源码+手册+视频下载地址:http://www.openedv.com/docs/boards/arm-linux/zdyz-i.mx6ull.html
5)正点原子官方B站:https://space.bilibili.com/394620890
6)正点原子阿尔法Linux交流群:1027879335 QQ群.png

原子哥.jpg

微信公众号.png

第八章 文本读写



在很多时候我们需要读写文本文件进行读写,比如写个Mp3音乐播放器需要读Mp3歌词里的文本,比如修改了一个txt文件后保存,就需要对这个文件进行读写操作。本章介绍简单的文本文件读写,内容精简,让大家了解文本读写的基本操作。

8.1 QFile读写文本
QFile类提供了读取和写入文件的接口。在嵌入式里如果需要读写文件,最简单的方法就是用Qfile,在第14.2和14.3小节就是利用了QFile来读写Linux下的字符设备(可把字符设备当作一个文本处理,linux下一切皆文件),虽然只是写‘0’或‘1’,但也是对文件(文本)的读写了。
QFile是一个读写文本、二进制文件和资源的I/O设备。QFile可以自己使用,也可以更方便地与QTextStream或QDataStream一起使用。
文件名通常在构造函数中传递,但它可以在任何时候使用setFileName()设置。不支持使用其他分隔符(例如'\')。所以在Windows、 Linux或者Mac里文件的路径都是用'/'。不能看到Windows的路径是'\',我们就可以在写入的文件路径里添加这个'\'。不管操作系统是什么,QFile的文件分隔符都是'/'。
可以使用exists()检查文件是否存在,并使用remove()删除文件。(更高级的文件系统相关操作由QFileInfo和QDir提供。)用open()打开文件,用close()关闭文件,用flush()刷新文件。通常使用QDataStream或QTextStream读写数据,但也可以调用QIODevice继承的函数read()、readLine()、readAll()、write()。QFile还继承getChar()、putChar()和ungetChar(),它们一次只处理一个字符。文件的大小由size()返回。可以使用pos()获取当前文件位置,也可以使用seek()移动到新的文件位置。如果已经到达文件的末尾,则atEnd()返回true。
QFile:: open()函数打开文件时需要传递 QIODevice::OpenModeFlag 枚举类型的参数,决定文件以什么方式打开,QIODevice::OpenModeFlag类型的主要取值如下:
QIODevice::ReadOnly:以只读方式打开文件,用于载入文件。
QIODevice::WriteOnly:以只写方式打开文件,用于保存文件。
QIODevice::ReadWrite:以读写方式打开。
QIODevice::Append:以添加模式打开,新写入文件的数据添加到文件尾部。
QIODevice::Truncate:以截取方式打开文件,文件原有的内容全部被删除。
QIODevice::Text:以文本方式打开文件,读取时“\n”被自动翻译为换行符,写入时字符串结束符会自动翻译为系统平台的编码,如 Windows 平台下是“\r\n”。
这些取值可以组合,例如 QIODevice::ReadOnly | QIODevice::Text 表示以只读和文本方式打开文件。
使用QFile对一个文本文件的操作流程是以下这样的。
第八章1411.png

8.1.1 应用实例
例01_qfile,读写文本(难度:简单)。项目路径为Qt/2/01_qfile。2是代表第二篇的例程父目录。
在头文件“mainwindow.h”具体代码如下。
  1. mainwindow.h编程后的代码
  2.     /******************************************************************
  3.     Copyright © Deng Zhimao Co., Ltd. 1990-2021. All rights reserved.
  4.     * @projectName   01_qfile
  5.     * @brief         mainwindow.h
  6.     * [url=home.php?mod=space&uid=90321]@Author[/url]        Deng Zhimao
  7.     * [url=home.php?mod=space&uid=55957]@EMAIL[/url]         <a href="mailto:1252699831@qq.com">1252699831@qq.com</a>
  8.     * [url=home.php?mod=space&uid=28414]@net[/url]            <a href="www.openedv.com" target="_blank">www.openedv.com</a>
  9.     * @date           2021-03-27
  10.     *******************************************************************/
  11. 1   #ifndef MAINWINDOW_H
  12. 2   #define MAINWINDOW_H
  13. 3
  14. 4   #include <QMainWindow>
  15. 5   #include <QTextEdit>
  16. 6   #include <QFile>
  17. 7   #include <QVBoxLayout>
  18. 8   #include <QHBoxLayout>
  19. 9   #include <QPushButton>
  20. 10
  21. 11  class MainWindow : public QMainWindow
  22. 12  {
  23. 13      Q_OBJECT
  24. 14
  25. 15  public:
  26. 16      MainWindow(QWidget *parent = nullptr);
  27. 17      ~MainWindow();
  28. 18
  29. 19  private:
  30. 20      /* 用于读取文件后显示 */
  31. 21      QTextEdit *textEdit;
  32. 22
  33. 23      /* QFile类型对象 */
  34. 24      QFile file;
  35. 25
  36. 26      /* 水平布局 */
  37. 27      QHBoxLayout *hBoxLayout;
  38. 28
  39. 29      /* 垂直布局 */
  40. 30      QVBoxLayout *vBoxLayout;
  41. 31
  42. 32      /* 水平布局Widget */
  43. 33      QWidget *hWidget;
  44. 34
  45. 35      /* 垂直布局Widget */
  46. 36      QWidget *vWidget;
  47. 37
  48. 38      /* 打开文件按钮 */
  49. 39      QPushButton *openPushButton;
  50. 40
  51. 41      /* 关闭文件按钮 */
  52. 42      QPushButton *closePushButton;
  53. 43
  54. 44  private slots:
  55. 45
  56. 46      /* 打开文本文件 */
  57. 47      bool openFile();
  58. 48
  59. 49      /* 关闭文本文件 */
  60. 50      void closeFile();
  61. 51  };
  62. 52  #endif // MAINWINDOW_H
复制代码


在源文件“mainwindow.cpp”具体代码如下。
  1. mainwindow.cpp编程后的代码
  2.     /******************************************************************
  3.     Copyright &#169; Deng Zhimao Co., Ltd. 1990-2021. All rights reserved.
  4.     * @projectName   01_qfile
  5.     * @brief         mainwindow.cpp
  6.     * @author        Deng Zhimao
  7.     * @email         <a href="mailto:1252699831@qq.com">1252699831@qq.com</a>
  8.     * @net            <a href="www.openedv.com" target="_blank">www.openedv.com</a>
  9.     * @date           2021-03-27
  10.     *******************************************************************/
  11.     #include "mainwindow.h"
  12.     #include <QFileDialog>
  13.     #include <QDebug>

  14. 1   MainWindow::MainWindow(QWidget *parent)
  15. 2       : QMainWindow(parent)
  16. 3   {
  17. 4       /* 设置窗口的位置与大小 */
  18. 5       this->setGeometry(0, 0, 800, 480);
  19. 6  
  20. 7       /* 布局设置 */
  21. 8       textEdit = new QTextEdit();
  22. 9       vBoxLayout = new QVBoxLayout();
  23. 10      hBoxLayout = new QHBoxLayout();
  24. 11      vWidget = new QWidget();
  25. 12      hWidget = new QWidget();
  26. 13      openPushButton = new QPushButton();
  27. 14      closePushButton = new QPushButton();
  28. 15
  29. 16      /* 设置两个按钮的大小 */
  30. 17      openPushButton->setMinimumHeight(50);
  31. 18      openPushButton->setMaximumWidth(120);
  32. 19      closePushButton->setMinimumHeight(50);
  33. 20      closePushButton->setMaximumWidth(120);
  34. 21
  35. 22      /* 设置两个按钮的文本 */
  36. 23      openPushButton->setText("打开");
  37. 24      closePushButton->setText("关闭");
  38. 25
  39. 26      /* 设置关闭按钮为不可用属性,需要打开文件才设置为可用属性 */
  40. 27      closePushButton->setEnabled(false);
  41. 28
  42. 29      /* 水平布局 */
  43. 30      hBoxLayout->addWidget(openPushButton);
  44. 31      hBoxLayout->addWidget(closePushButton);
  45. 32      hWidget->setLayout(hBoxLayout);
  46. 33
  47. 34      /* 垂直布局 */
  48. 35      vBoxLayout->addWidget(textEdit);
  49. 36      vBoxLayout->addWidget(hWidget);
  50. 37      vWidget->setLayout(vBoxLayout);
  51. 38
  52. 39      /* 居中 */
  53. 40      setCentralWidget(vWidget);
  54. 41
  55. 42      /* 信号槽连接 */
  56. 43      connect(openPushButton, SIGNAL(clicked()),
  57. 44              this, SLOT(openFile()));
  58. 45      connect(closePushButton, SIGNAL(clicked()),
  59. 46              this, SLOT(closeFile()));
  60. 47  }
  61. 48
  62. 49  MainWindow::~MainWindow()
  63. 50  {
  64. 51  }
  65. 52
  66. 53  bool MainWindow::openFile()
  67. 54  {
  68. 55      /* 获取文件的路径 */
  69. 56      QString fileName = QFileDialog::getOpenFileName(this);
  70. 57
  71. 58      /* 指向文件 */
  72. 59      file.setFileName(fileName);
  73. 60
  74. 61      /* 判断文件是否存在 */
  75. 62      if (!file.exists())
  76. 63          return false;
  77. 64
  78. 65      /* 以读写的方式打开 */
  79. 66      if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
  80. 67          return false;
  81. 68
  82. 69      /* 读取文本到textEdit */
  83. 70      textEdit->setPlainText(file.readAll());
  84. 71
  85. 72      /* 设置打开按钮不可用,需要关闭再打开 */
  86. 73      openPushButton->setEnabled(false);
  87. 74
  88. 75      /* 设置关闭按钮为可用属性 */
  89. 76      closePushButton->setEnabled(true);
  90. 77
  91. 78      /* 关闭文件 */
  92. 79      file.close();
  93. 80
  94. 81      return true;
  95. 82  }
  96. 83
  97. 84  void MainWindow::closeFile()
  98. 85  {
  99. 86      /* 检测打开按钮是否可用,不可用时,说明已经打开了文件 */
  100. 87      if (!openPushButton->isEnabled()) {
  101. 88          /* 获取textEdit的文本内容 */
  102. 89          QString str = textEdit->toPlainText();
  103. 90
  104. 91          /* 以只读的方式打开 */
  105. 92          if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
  106. 93              return;
  107. 94
  108. 95          /* 转换为字节数组 */
  109. 96          QByteArray strBytes = str.toUtf8();
  110. 97
  111. 98          /* 写入文件 */
  112. 99          file.write(strBytes, strBytes.length());
  113. 100
  114. 101         /* 清空textEdit的显示内容 */
  115. 102         textEdit->clear();
  116. 103
  117. 104         /* 关闭文件 */
  118. 105         file.close();
  119. 106
  120. 107         /* 重新设置打开和关闭按钮的属性 */
  121. 108         openPushButton->setEnabled(true);
  122. 109         closePushButton->setEnabled(false);
  123. 110     }
  124. 111 }
复制代码



8.1.2 程序运行效果
点击打开。
第八章6421.png
        调用系统打开文件的窗口。选择项目路径下的“测试.txt”。
第八章6454.png
        打开后,文本的内容如下,可以进行修改,修改后点击关闭就会写入到此文件里。本例仅仅用两个按钮和一个文本编辑框完成,内容简洁易懂。但是在实际项目里不是用QPushButton来做打开文件和关闭文件的,一般设计于在菜单栏里用QAction来做。包括添加复制、粘贴、另存为、关闭、等等。可以仿照Windows里的记事本,用Qt写一个类似的软件完全可以。
第八章6630.png
8.2 QTextStream读写文本
QTextStream类为读写文本提供了一个方便的接口,常与QFile结合使用。QTextStream可以在QIODevice、QByteArray或QString上操作。使用QTextStream的流操作符,您可以方便地读写单词、行和数字。为了生成文本,QTextStream支持字段填充和对齐的格式化选项,以及数字的格式化。看到Stream这个名词就知道,它与流操作有关,那么我们可以使用C++的操作符“<<”和“>>”(流提取运算符和流插入运算符)进行操作流了。
8.2.1 应用实例
例02_qtextstream,文本流读写文本(难度:简单)。项目路径为Qt/2/02_qtextstream。QTextStream的例子与QFile的一样,只是在QFile的例子里加入了QTextStream。下面只写出不同部分的代码。详细直接打开项目查看。
在源文件“mainwindow.cpp”具体代码如下。不同的地方已经用红色字体标出。
  1. mainwindow.cpp编程后的代码
  2. 53  bool MainWindow::openFile()
  3. 54  {
  4. 55      /* 获取文件的路径 */
  5. 56      QString fileName = QFileDialog::getOpenFileName(this);
  6. 57
  7. 58      /* 指向文件 */
  8. 59      file.setFileName(fileName);
  9. 60
  10. 61      /* 判断文件是否存在 */
  11. 62      if (!file.exists())
  12. 63          return false;
  13. 64
  14. 65      /* 以读写的方式打开 */
  15. 66      if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
  16. 67          return false;
  17. 68
  18. 69      /* 使用文本流读取文件 */
  19. 70      QTextStream stream(&file);
  20. 71
  21. 72      /* 读取文本到textEdit */
  22. 73      textEdit->setPlainText(stream.readAll());
  23. 74
  24. 75      /* 设置打开按钮不可用,需要关闭再打开 */
  25. 76      openPushButton->setEnabled(false);
  26. 77
  27. 78      /* 设置关闭按钮为可用属性 */
  28. 79      closePushButton->setEnabled(true);
  29. 80
  30. 81      /* 关闭文件 */
  31. 82      file.close();
  32. 83
  33. 84      return true;
  34. 85  }
  35. 86
  36. 87  void MainWindow::closeFile()
  37. 88  {
  38. 89      /* 检测打开按钮是否可用,不可用时,说明已经打开了文件 */
  39. 90      if (!openPushButton->isEnabled()) {
  40. 91
  41. 92          /* 以只读的方式打开 */
  42. 93          if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
  43. 94              return;
  44. 95
  45. 96          /* 用文本流读取文件 */
  46. 97          QTextStream stream(&file);
  47. 98
  48. 99          /* 获取textEdit的文本内容,转为字符串 */
  49. 100         QString str = textEdit->toPlainText();
  50. 101
  51. 102         /* 使用流提取运算符,写入文本流 */
  52. 103         stream<<str;
  53. 104
  54. 105         /* 清空textEdit的显示内容 */
  55. 106         textEdit->clear();
  56. 107
  57. 108         /* 关闭文件 */
  58. 109         file.close();
  59. 110
  60. 111         /* 重新设置打开和关闭按钮的属性 */
  61. 112         openPushButton->setEnabled(true);
  62. 113         closePushButton->setEnabled(false);
  63. 114     }
  64. 115 }
复制代码



8.2.2 程序运行效果
与上一小节(8.1.2小节)一样。使用QFile与QTextStream感觉例子看上去没区别。主要是QTextStream还支持字段填充和对齐的格式化选项,例子没有体现出来而已,等我们用到一些特性时还是有区别的。
正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-25 18:42

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表