用QAxObject实现把excel转换txt

效率比较慢  但是可以使用

#include "Transition.h"
#include <QFileDialog>
#include <QString>
#include <qDebug>
#include <QAxObject>
#include <QVariantList>
#include <QVariant>
#include <QTextStream>

Transition::Transition(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);
    //connect()
}

void Transition::on_btn_xz_clicked()
{
    filePath = QFileDialog::getOpenFileName(NULL, "配置文件", ".", "*.xl*");
    ui.edit_path->setText(filePath);
}

void Transition::on_btn_zhdw_clicked()
{
    if (filePath.isEmpty())
    {
        return ;
    }
    else
    {
        excel = new QAxObject("Excel.Application");                                    //创建Excel对象连接驱动
        excel->dynamicCall("SetVisible(bool)", false);                                //ture的打开 false不打开Excel表
        excel->setProperty("DisplayAlerts", false);
        workbooks = excel->querySubObject("WorkBooks");
        workbook = workbooks->querySubObject("Open(const QString&)", filePath);        //打开指定Excel
        worksheets = workbook->querySubObject("WorkSheets");                        //当前excel对应的所有sheet集合
        int sheet_count = worksheets->property("Count").toInt();                    //获取sheet表的数量
        for (int num = 1; num <= sheet_count-1; num++)
        {
            worksheet = worksheets->querySubObject("Item(int)", num);                      //获取第n个sheet表
            usedrange = worksheet->querySubObject("Usedrange");                            //获取权限
            int iRow = usedrange->property("Row").toInt();                                 //数据起始行数
            int iCol = usedrange->property("Column").toInt();                            //列数
            int intRow = usedrange->querySubObject("Rows")->property("Count").toInt();  //获取数据总行数
            for (int i = iRow+1; i <= intRow; i++)// 逐行读取主表
            {
                QString id = worksheet->querySubObject("Cells(int,int)", i, 1)->dynamicCall(("Value2()")).value<QString>();     // 编号
                QString name = worksheet->querySubObject("Cells(int,int)", i, 2)->dynamicCall(("Value2()")).value<QString>();    //名称
                QString type = worksheet->querySubObject("Cells(int,int)", i, 3)->dynamicCall(("Value2()")).value<QString>();    //类型
                QString min = worksheet->querySubObject("Cells(int,int)", i, 4)->dynamicCall(("Value2()")).value<QString>();    //最小值
                QString max = worksheet->querySubObject("Cells(int,int)", i, 5)->dynamicCall(("Value2()")).value<QString>();    //最大值
                QString site = worksheet->querySubObject("Cells(int,int)", i, 6)->dynamicCall(("Value2()")).value<QString>();    //地址
                QString explain = worksheet->querySubObject("Cells(int,int)", i, 7)->dynamicCall(("Value2()")).value<QString>();    //说明
                QString leixing = worksheet->querySubObject("Cells(int,int)", i, 8)->dynamicCall(("Value2()")).value<QString>();    //类型
                QFile file;
                file.setFileName("C:\\Users\\zq\\Desktop\\3.ini");//输出到指定文件
                if (file.open(QIODevice::ReadWrite | QIODevice::Text | QIODevice::Append))
                {
                    QTextStream stream(&file);
                    stream << id << "," << name << "," << type << "," << min << "," << max << "," << site << "," << explain << "," << leixing << "\n";
                    file.close();
                }
            }
        }
    }
        workbooks->dynamicCall("close");
        excel->dynamicCall("Quit()");
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值