资源简介
破解版可以读取文件超过200行,并且第一行没有LOGO。里面带的例子是我测试的读取xlsx文件中的中文,环境是VS2010,测试成功。
代码片段和文件信息
#include
#include
#include
using namespace std;
using namespace libxl;
//中文的内容读出来后要进行编码的转换,这个为转换函数:wchar_t to char
char *w2c(char *pcstrconst wchar_t *pwstr size_t len)
{
int nlength=wcslen(pwstr);
//获取转换后的长度
int nbytes = WideCharToMultiByte( 0 0 pwstr nlength NULL0NULL NULL );
if(nbytes>len) nbytes=len;
// 通过以上得到的结果,转换unicode 字符为ascii 字符
WideCharToMultiByte( 00 pwstr nlength pcstr nbytes NULL NULL );
return pcstr ;
}
int main(int argc char* argv[])
{
Book* book = xlCreatexmlBook();
if(book->load(L“1.xlsx“)){
Sheet * sheet = book->getSheet(0);
if(sheet){
CellType celltype = sheet->cellType(11);
cout<<“the type is:“<
const wchar_t * t = sheet->readStr(11);
char *pcstr = (char *)malloc(sizeof(char)*(2 * wcslen(t)+1));
memset(pcstr 0 2 * wcslen(t)+1 );
w2c(pcstrt2 * wcslen(t)+1) ;
cout<<“result:“< free(pcstr);
}
}
system(“pause“);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3395672 2012-12-14 15:40 libxl-3.1(破解版).rar
文件 1093 2012-12-19 16:20 main.cpp
----------- --------- ---------- ----- ----
3396765 2
相关资源
- WinRAR 4.0 简体中文破解版
- Dr. Cleaner Pro mac破解版
- 超级硬盘数据恢复软件 3.1破解版+无需
- 超级硬盘数据恢复软件真正的完美破
- superrecovery破解版
- 注册表优化工具(Systweak RegClean Pro)
- VisualSVN-VS2019-7.1.2破解版
- 杰奇1.70完整破解版-杰奇1.7全功能完整
- VisualSVN Server 4.0.0 企业破解版
- VisualSVN 6.0.4 破解版(支持VS2017)
- BOSON模拟器NetSim V5.31破解版附注册机
- ida pro for mac 破解版 含解决打开就显示
- Post Processing Profiles 3.1
- 宇柏林完整破解版
- LibXL for Windows 3.8.3 最新版Excel操作库带
- 破解ServiceStack.Redis每小时6000次限制
- CuteFTP8.0绿色破解版免安装无需序列号
- FolderHighlight(彩色文件夹) V2.8.1 免费
- BUS hound破解版
- BusHound_v6.0.1正式版破解版 x86( 32位
- Bushound 64位破解版
- 天马金昌转换破解版免费版
-
Windows em
bedded Standard 7 X86X64纯净版 - CuteFTP8.0简体中文破解版
- FileViewPro破解版
- 冠唐设备管理软件v2.58破解版
- 简单易用易洁仓库管理软件2019免狗破
- IBM x3650/x3550 M4芯
- EDIUS 8.5.3 英文破解版
- Video Enhancer去除视频马赛克软件 v3.1完
评论
共有 条评论