如何用C语言实现读取excel文件中的数据呢?

如何用C语言实现读取excel文件中的数据呢?,第1张

基本思路

基础实现方法同上篇文章《直接通过ODBC读、写Excel表格文件》相同,都是通过ODBC来把Excel表格文件当成数据库文件来进行读、写等 *** 作,所以在Excel表格文件中写入的行头名必须是唯一的(不要重名,相当于数据库中的ID值)。本文中对Excel文件的 *** 作都被封装进一个类CSpreadSheet中,通过它我们可以非常简便的实现各种Excel表格数据 *** 作,并且可以对该类进行扩充来满足自己的需求。

具体实现

一、 包含Excel文件 *** 作类头文件

#include "CSpreadSheet.h"

二、 新建Excel文件,并写入默认数据

// 新建Excel文件名及路径,TestSheet为内部表名

CSpreadSheet SS("c:\\Test.xls", "TestSheet")

CStringArray sampleArray, testRow

SS.BeginTransaction()

// 加入标题

sampleArray.RemoveAll()

sampleArray.Add("姓名")

sampleArray.Add("年龄")

SS.AddHeaders(sampleArray)

// 加入数据

CString strName[] = {"徐景周","徐志慧","郭徽","牛英俊","朱小鹏"}

CString strAge[] = {"27","23","28","27","26"}

for(int i = 0i <sizeof(strName)/sizeof(CString)i++)

{

sampleArray.RemoveAll()

sampleArray.Add(strName[i])

sampleArray.Add(strAge[i])

SS.AddRow(sampleArray)

}

SS.Commit()

三、 读取Excel文件数据

CSpreadSheet SS("c:\\Test.xls", "TestSheet")

CStringArray Rows, Column

//清空列表框

m_AccessList.ResetContent()

for (int i = 1i <= SS.GetTotalRows()i++)

{

// 读取一行

SS.ReadRow(Rows, i)

CString strContents = ""

for (int j = 1j <= Rows.GetSize()j++)

{

if(j == 1)

strContents = Rows.GetAt(j-1)

else

strContents = strContents + " -->" + Rows.GetAt(j-1)

}

m_AccessList.AddString(strContents)

}

四、 对已存在Excel表格数据进行添加、插入、替换 *** 作

// 初始化测试行数据,进行添加、插入及替换数据 *** 作演示

for (int k = 1k <= 2k++)

{

testRow.Add("Test")

}

SS.AddRow(testRow) // 添加到尾部

SS.AddRow(testRow, 2) // 插入新行到第二行

SS.AddRow(testRow, 6, true)// 替换原第四行来新的内容

SS.AddCell("徐景周", 1,2) // 添加(不存在)或替换(存在)第二行,第一列单元格内容

SS.Commit()

五、 对已存在Excel表格数据进行行、列、单元格查询

void CExcelAccessDlg::OnQuery()

{

CSpreadSheet SS("c:\\Test.xls", "TestSheet")

CStringArray Rows, Column

CString tempString = ""

UpdateData()

if(m_strRow == "" &&m_strColumn == "") // 查询为空

{

AfxMessageBox("行号、列号不能同时为空!")

return

}

else if(m_strRow == "" &&m_strColumn != "")// 查询指定列数据

{

int iColumn = atoi(m_strColumn)

int iCols = SS.GetTotalColumns()

if(iColumn >iCols) // 超出表范围查询时

{

CString str

str.Format("表中总列数为: %d, ", iCols)

AfxMessageBox(str + " 查询列数大于Excel表中总列数,请重新输入!")

return

}

// 读取一列数据,并按行读出

if(!SS.ReadColumn(Column, iColumn))

{

AfxMessageBox(SS.GetLastError())

return

}

CString tmpStr

for (int i = 0i <Column.GetSize()i++)

{

tmpStr.Format("行号: %d, 列号: %d ,内容: %s\n", i+1,iColumn,Column.GetAt(i))

tempString += tmpStr

}

AfxMessageBox(tempString)

}

else if(m_strRow != "" &&m_strColumn == "") // 查询指定行数数据

{

int iRow = atoi(m_strRow)

int iRows = SS.GetTotalRows()

if(iRow >iRows) // 超出表范围查询时

{

CString str

str.Format("表中总行数为: %d, ", iRows)

AfxMessageBox(str + " 查询行数大于Excel表中总行数,请重新输入!")

return

}

// 读取指定行数据

if(!SS.ReadRow(Rows, iRow))

{

AfxMessageBox(SS.GetLastError())

return

}

CString tmpStr

for (int i = 0i <Rows.GetSize()i++)

{

tmpStr.Format("行号: %d, 列号: %d ,内容: %s\n", iRow, i+1, Rows.GetAt(i))

tempString += tmpStr

}

AfxMessageBox(tempString)

}

else if(m_strRow != "" &&m_strColumn != "") // 查询指定单元格数据

{

int iRow = atoi(m_strRow), iColumn = atoi(m_strColumn)

int iRows = SS.GetTotalRows(), iCols = SS.GetTotalColumns()

if(iColumn >iCols) // 超出表范围查询时

{

CString str

str.Format("表中总列数为: %d, ", iCols)

AfxMessageBox(str + " 查询列数大于Excel表中总列数,请重新输入!")

return

}

else if(iRow >iRows)

{

CString str

str.Format("表中总行数为: %d, ", iRows)

AfxMessageBox(str + " 查询行数大于Excel表中总行数,请重新输入!")

return

}

// 读取指定行、列单元格数据

if(!SS.ReadCell(tempString, iColumn, iRow))

{

AfxMessageBox(SS.GetLastError())

return

}

CString str

str.Format("行号: %d, 列号: %d ,内容: %s", iRow,iColumn,tempString)

AfxMessageBox(str)

}

}

六、 将存在的Excel转换另存为指定分隔的文本文件

// 将原Excel文件转换为用分号分隔的文本,并另存为同名文本文件

SS.Convert("")

七、 删除Excel中表格

SS. DeleteSheet() // 删除Excel文件中所有表格

SS. DeleteSheet(" TestSheet ") // 删除Excel中TextSheet表格

八、 获取Excel中总行数、总列数、当前行

int iCols = SS.GetTotalColumns() // 总列数

int iRows = SS.GetTotalRows() // 总行数

int iCurRow = SS.GetCurrentRow()// 当前所在行号

九、 获取行头数据

CStringArray rowHeader

SS.GetFieldNames(rowHeader)

CString tmpStr

for (int i = 0i <rowHeader.GetSize()i++)

{

tmpStr.Format("行号: %d, 列号: %d ,内容: %s\n", 1, i+1, rowHeader.GetAt(i))

tempString += tmpStr

}

AfxMessageBox(tempString)

最后,如果想知道详细实现细节的话,可以在下载示例源码后,仔细查看源码既可(内有详细注释)。

#include

#include

char format[]="%s%s\n";

char hello[]="Hello";

char world[]="world";

HWND hwnd;void main(void)

asm

//push NULL

//call dword ptr GetModuleHandle

//mov hwnd,eax push MB_OK mov eax,offset world push eax mov eax,offset hello push eax push 0//说明此处不能将前面注释掉代码处得到的hwnd压栈,否则对话框d不出来。

call dword ptr MessageBox

}

}

WINDOWS程序MessagBox

WINDOWS或控制台 assert

C/C++ code

// crt_assert.c

// compile with: /c

#include <stdio.h>

#include <assert.h>

#include <string.h>

void analyze_string( char *string )   // Prototype

int main( void )

{

char  test1[] = "abc", *test2 = NULL, test3[] = ""

printf ( "Analyzing string '%s'\n", test1 )fflush( stdout )

analyze_string( test1 )

printf ( "Analyzing string '%s'\n", test2 )fflush( stdout )

analyze_string( test2 )

printf ( "Analyzing string '%s'\n", test3 )fflush( stdout )

analyze_string( test3 )

}

// Tests a string to see if it is NULL,

// empty, or longer than 0 characters.

void analyze_string( char * string )

{

assert( string != NULL )        // Cannot be NULL

assert( *string != '\0' )       // Cannot be empty

assert( strlen( string ) >2 )  // Length must exceed 2

}

扩展资料:

#include <windows.h>

#include <Commdlg.h>

#include <stdio.h>

// 返回值: 成功 1, 失败 0

// 通过 path 返回获取的路径

int FileDialog(char *path)

{

OPENFILENAME ofn

ZeroMemory(&ofn, sizeof(ofn))

ofn.lStructSize = sizeof(ofn)// 结构大小

ofn.lpstrFile = path// 路径

ofn.nMaxFile = MAX_PATH// 路径大小

ofn.lpstrFilter = "All\0*.*\0Text\0*.TXT\0"// 文件类型

ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST

return GetOpenFileName(&ofn)

}

int main(char argc, char *argv[])

{

char szFile[MAX_PATH] = {0}

if(FileDialog(szFile))

{

puts(szFile)

}

getchar()

return 0

}

c语言的获取随机数的函数为rand(),

可以获得一个非负整数的随机数。要调用rand需要引用头文件stdlib.h。

要让随机数限定在一个范围,可以采用模除加加法的方式。

要产生随机数r,

其范围为

m<=r<=n,可以使用如下公式:

rand()%(n-m+1)+m

其原理为,对于任意数,

0<=rand()%(n-m+1)<=n-m

于是

0+m<=rand()%(n-m+1)+m<=n-m+m

m<=rand()%(n-m+1)+m<=n


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11667015.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存