qt Excel 파일 읽기
3738 단어 QT
#include
#include "readexcel.h"
#include
#include
ReadExcel::ReadExcel()
:m_row(0), m_col(0), m_filename("")
{
m_excel = new QAxObject("Excel.Application");
}
ReadExcel::~ReadExcel()
{
if (!m_mapdata.empty()) {
m_mapdata.clear();
}
delete m_excel;
}
//
bool ReadExcel::openExcel(const QString &filename)
{
if (filename.isEmpty()) {
m_row = 0;
m_col = 0;
return false;
}
QFile file(filename);
if (!file.exists()){
m_row = 0;
m_col = 0;
return false;
};
if (!m_mapdata.empty()) {
m_mapdata.clear();
}
m_filename = filename;
try {
getALLfromExcel();
} catch (...) {
return false;
}
return true;
}
void ReadExcel::getInfo(int &row, int &col) const
{
row = m_row;
col = m_col;
}
std::string ReadExcel::getCellData(const int &row, const int &col)
{
if (row >= 1 && row <= m_row && col >= 1 && col <= m_col) {
p.m_row = row;
p.m_col = col;
return m_mapdata[p];
} else {
return NULL;
}
}
void ReadExcel::getALLfromExcel()
{
m_excel->setProperty("Visible", 0);
QAxObject* workbooks = m_excel->querySubObject("WorkBooks");
workbooks->dynamicCall("Open (const QString&)", m_filename);
QAxObject* workbook = m_excel->querySubObject("ActiveWorkBook");
QAxObject* worksheets = workbook->querySubObject("WorkSheets");
QAxObject* worksheet = workbook->querySubObject("Worksheets(int)", 1); //worksheet number
QAxObject* usedrange = worksheet->querySubObject("UsedRange");
QAxObject* rows = usedrange->querySubObject("Rows");
QAxObject* columns = usedrange->querySubObject("Columns");
int intRowStart = usedrange->property("Row").toInt();
int intColStart = usedrange->property("Column").toInt();
int intCols = columns->property("Count").toInt();
int intRows = rows->property("Count").toInt();
m_row = intRows;
m_col = intCols;
QAxObject * cell;
for (int i = intRowStart; i < intRowStart + intRows; i++)
{
for (int j = intColStart; j < intColStart + intCols; j++)
{
Position pos(i, j);
cell = m_excel->querySubObject("Cells(Int, Int)", i, j );
QVariant cellValue = cell->dynamicCall("value");
m_mapdata.insert(std::pair(pos, cellValue.toString().toStdString()));
}
}
m_excel->setProperty("DisplayAlerts", 0);
workbook->dynamicCall("Save(void)");
workbook->dynamicCall("Close (Boolean)", false);
m_excel->setProperty("DisplayAlerts",1);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간편한 채팅 시스템 - 메시지 전달 서버메시지 전송 서버는 메시지 대기열에서 온 데이터를 받아들여 디코딩, 식별 등을 하고 마지막으로 분류를 나눈다.예를 들어 채팅 시스템은 같은 그룹과 같은 세션의 정보를 같은 그룹 서비스로 전송한다(물론 아직 같은 그룹...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.