• QT之excel的读写



    在 Qt 中,可以使用第三方库来处理 Excel 文件,常用的库包括:

    QXlsx:一个基于 Qt 的 Excel 文件处理库,支持读写 Excel 文件。
    LibXL:一个商业的 Excel 文件处理库,支持多种编程语言,包括 C++。
    OpenXLSX:一个开源的 Excel 文件处理库,支持读写 Excel 文件,支持多种操作系统。
    下面以 QXlsx 为例,介绍在 Qt 中读写 Excel 文件的方法:

    1. 读取 Excel 文件

    #include   
    #include   
    #include "xlsxdocument.h"  
      
    int main(int argc, char *argv[])  
    {  
        QCoreApplication a(argc, argv);  
          
        // 打开 Excel 文件  
        QXlsx::Document xlsx("example.xlsx");  
          
        // 获取工作表对象  
        QXlsx::Worksheet *worksheet = xlsx.currentWorksheet();  
          
        // 获取单元格内容  
        QVariant value = worksheet->read("A1");  
        qDebug() << value.toString();  
          
        // 设置单元格内容  
        worksheet->write("A1", "Hello World");  
          
        // 保存文件  
        xlsx.save();  
          
        return a.exec();  
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    在上面的代码中,首先创建了一个 QXlsx::Document 对象,并打开了名为 example.xlsx 的 Excel 文件。然后获取了当前工作表对象,并使用 read 方法获取了 A1 单元格的值,并使用 write 方法设置了 A1 单元格的值。最后调用 save 方法保存文件。

    2. 写入 Excel 文件

    #include   
    #include   
    #include "xlsxdocument.h"  
      
    int main(int argc, char *argv[])  
    {  
        QCoreApplication a(argc, argv);  
          
        // 创建 Excel 文件  
        QXlsx::Document xlsx;  
          
        // 创建工作表对象  
        QXlsx::Worksheet *worksheet = xlsx.createWorksheet("Sheet1");  
          
        // 设置单元格内容  
        worksheet->write("A1", "Hello World");  
          
        // 保存文件  
        xlsx.save("example.xlsx");  
          
        return a.exec();  
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    在上面的代码中,首先创建了一个 QXlsx::Document 对象,并创建了一个名为 Sheet1 的工作表对象。然后使用 write 方法设置了 A1 单元格的值。最后调用 save 方法保存文件。

    QXlsx是开源第三方库

    Github下载:https://github.com/dbzhang800/QtXlsxWriter
    官方文档:http://qtxlsx.debao.me/

  • 相关阅读:
    Spark入门
    [Spring Cloud] Eureka Server安装
    阿里巴巴面试题- - -JVM篇(二十一)
    RedisJava基础代码实现
    React经典初级错误
    EXCEL——根据单元格值设置不同色阶
    【SSM框架 二】Spring
    java计算机毕业设计物业管理系统源码+系统+数据库+lw文档+mybatis+运行部署
    Dockers数据卷Volume
    互联网行业数据安全建设实践方案
  • 原文地址:https://blog.csdn.net/techenliu/article/details/133089775