本文主要是介绍Creo 二次开发-Excel 读写,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
BasicExcel
使用 BasicExcel 库实现读写 Excel 文件,该库可以实现 Excel 文件的基本操作,中文支持良好,不依赖其它应用程序。
下载地址:http://shell.franken.de/svn/sky/excel/trunk/
基本操作:
- 该库使用命名空间为 ExcelFormat,为方便使用将命名空间重命名为 BE
- 初始化
BE::BasicExcel wb; wb.New(1); //初始化一个workbook BE::BasicExcelWorksheet *ws = wb.GetWorksheet(0);//获取第一个worksheet
- 写入数据
Worksheet 成员函数 Cell()获取 ExcelCell 对象,ExcelCell 的成员函数 set 设置单元格内容。
成员函数 Set 有下面四个重载,中文字符需要转为 Unicode 再写入 Excelws->Cell(r, c)->Set(text.operator cWStringT()); //写入Unicode字符串
void Set(int val); ///< Set content of current Excel cell to an integer. void Set(double val); ///< Set content of current Excel cell to a double. void Set(const char *str); ///< Set content of current Excel cell to an ANSI string. void Set(const wchar_t *str); ///< Set content of current Excel cell to an Unicode string.
- 读取数据
获取数据需要先用 Type()判断单元格的数据类型,然后选择相应的函数获取数据。int GetInteger() const; ///< Get an integer value. Returns 0 if cell does not contain an integer. double GetDouble() const; ///< Get a double value. Returns 0.0 if cell does not contain a double. const char *GetString() const; ///< Get an ANSI string. Returns 0 if cell does not contain an ANSI string. const wchar_t *GetWString() const; ///< Get an Unicode string. Returns 0 if cell does not contain an Unicode string.
- 保存表格
wb.SaveAs(xlspath.c_str());
数据交互
otk 提供了 xstring 类,该类中提供了运算符 cWStringT(),可以将 char*转为 wchar_t*然后输出到 Excel 中。从 Excel 中读取的数据可以直接用于初始化 xstring 类。
从这一点上来说,xstring 类在读写 Excel 时更加方便了。
实例 2.2WriteToExcel
该实例实现了读取 Creo 中表格内容到 Excel 和读取 Excel 内容到 Creo 中表格,可以更加方便快速的更新标题栏信息等。
源代码
这篇关于Creo 二次开发-Excel 读写的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!