ExcelImpl.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. #include "StdAfx.h"
  2. #include "ExcelImpl.h"
  3. //////////////////////////////////////////////////////////////////////////////
  4. //名称:GetExcelDriver
  5. //功能:获取ODBC中Excel驱动
  6. //作者:徐景周(jingzhou_xu@163.net)
  7. //组织:未来工作室(Future Studio)
  8. //日期:2002.9.1
  9. /////////////////////////////////////////////////////////////////////////////
  10. CString CExcelImpl::GetExcelDriver()
  11. {
  12. char szBuf[2001];
  13. WORD cbBufMax = 2000;
  14. WORD cbBufOut;
  15. char *pszBuf = szBuf;
  16. CString sDriver;
  17. // 获取已安装驱动的名称(涵数在odbcinst.h里)
  18. if (!SQLGetInstalledDrivers(szBuf, cbBufMax, &cbBufOut))
  19. return "";
  20. // 检索已安装的驱动是否有Excel...
  21. do
  22. {
  23. if (strstr(pszBuf, "Excel") != 0)
  24. {
  25. //发现 !
  26. sDriver = CString(pszBuf);
  27. break;
  28. }
  29. pszBuf = strchr(pszBuf, '\0') + 1;
  30. }
  31. while (pszBuf[1] != '\0');
  32. return sDriver;
  33. }
  34. ///////////////////////////////////////////////////////////////////////////////
  35. // BOOL MakeSurePathExists( CString &Path,bool FilenameIncluded)
  36. // 参数:
  37. // Path 路径
  38. // FilenameIncluded 路径是否包含文件名
  39. // 返回值:
  40. // 文件是否存在
  41. // 说明:
  42. // 判断Path文件(FilenameIncluded=true)是否存在,存在返回TURE,不存在返回FALSE
  43. // 自动创建目录
  44. //
  45. ///////////////////////////////////////////////////////////////////////////////
  46. BOOL CExcelImpl::MakeSurePathExists( CString &Path, bool FilenameIncluded)
  47. {
  48. int Pos=0;
  49. while((Pos=Path.Find('\\',Pos+1))!=-1)
  50. CreateDirectory(Path.Left(Pos),NULL);
  51. if(!FilenameIncluded)
  52. CreateDirectory(Path,NULL);
  53. // return ((!FilenameIncluded)?!_access(Path,0):
  54. // !_access(Path.Left(Path.ReverseFind('\\')),0));
  55. return !_access(Path,0);
  56. }
  57. //获得默认的文件名
  58. BOOL CExcelImpl::GetDefaultXlsFileName(CString& sExcelFile)
  59. {
  60. ///默认文件名:yyyymmddhhmmss.xls
  61. CString timeStr;
  62. CTime day;
  63. day=CTime::GetCurrentTime();
  64. int filenameday,filenamemonth,filenameyear,filehour,filemin,filesec;
  65. filenameday=day.GetDay();//dd
  66. filenamemonth=day.GetMonth();//mm月份
  67. filenameyear=day.GetYear();//yyyy
  68. filehour=day.GetHour();//hh
  69. filemin=day.GetMinute();//mm分钟
  70. filesec=day.GetSecond();//ss
  71. timeStr.Format("%04d%02d%02d%02d%02d%02d",filenameyear,filenamemonth,filenameday,filehour,filemin,filesec);
  72. sExcelFile = timeStr + ".xls";
  73. // prompt the user (with all document templates)
  74. CFileDialog dlgFile(FALSE,".xls",sExcelFile);
  75. CString title;
  76. CString strFilter;
  77. title = "指纹机数据";
  78. strFilter = "Excel文件(*.xls)";
  79. strFilter += (TCHAR)'\0'; // next string please
  80. strFilter += _T("*.xls");
  81. strFilter += (TCHAR)'\0'; // last string
  82. dlgFile.m_ofn.nMaxCustFilter++;
  83. dlgFile.m_ofn.nFilterIndex = 1;
  84. // append the "*.*" all files filter
  85. CString allFilter;
  86. VERIFY(allFilter.LoadString(AFX_IDS_ALLFILTER));
  87. strFilter += allFilter;
  88. strFilter += (TCHAR)'\0'; // next string please
  89. strFilter += _T("*.*");
  90. strFilter += (TCHAR)'\0'; // last string
  91. dlgFile.m_ofn.nMaxCustFilter++;
  92. dlgFile.m_ofn.lpstrFilter = strFilter;
  93. dlgFile.m_ofn.lpstrTitle = title;
  94. if (dlgFile.DoModal()==IDCANCEL)
  95. return FALSE; // open cancelled
  96. CString sn = dlgFile.GetFileTitle() ;
  97. CString strPath = dlgFile.GetPathName();
  98. sExcelFile = strPath;
  99. if (MakeSurePathExists(sExcelFile,true))
  100. {
  101. if(!DeleteFile(sExcelFile))
  102. { // delete the file
  103. MessageBox(NULL, "覆盖文件时出错!", "提示", MB_ICONINFORMATION);
  104. return FALSE;
  105. }
  106. }
  107. return TRUE;
  108. }
  109. CExcelImpl::CExcelImpl(void)
  110. {
  111. }
  112. CExcelImpl::~CExcelImpl(void)
  113. {
  114. }
  115. ///////////////////////////////////////////////////////////////////////////////
  116. // void ExportListToExcel(CListCtrl* pList, CString strTitle)
  117. // 参数:
  118. // pList 需要导出的List控件指针
  119. // strTitle 导出的数据表标题
  120. // 说明:
  121. // 导出CListCtrl控件的全部数据到Excel文件。Excel文件名由用户通过“另存为”
  122. // 对话框输入指定。创建名为strTitle的工作表,将List控件内的所有数据(包括
  123. // 列名和数据项)以文本的形式保存到Excel工作表中。保持行列关系。
  124. //
  125. // edit by [r]@dotlive.cnblogs.com
  126. ///////////////////////////////////////////////////////////////////////////////
  127. CString CExcelImpl::ExportListToExcel(CListCtrl* pList, CString strTitle)
  128. {
  129. CString warningStr;
  130. CString sExcelFile;
  131. if (pList->GetItemCount()>0)
  132. {
  133. CDatabase database;
  134. CString sDriver;
  135. CString sSql;
  136. CString tableName = strTitle;
  137. // 检索是否安装有Excel驱动 "Microsoft Excel Driver (*.xls)"
  138. sDriver = GetExcelDriver();
  139. if (sDriver.IsEmpty())
  140. {
  141. // 没有发现Excel驱动
  142. AfxMessageBox("没有安装Excel!");
  143. return "";
  144. }
  145. ///默认文件名
  146. if (!GetDefaultXlsFileName(sExcelFile))
  147. {
  148. return "";
  149. }
  150. // 创建进行存取的字符串
  151. sSql.Format("DRIVER={%s};DSN='';FIRSTROWHASNAMES=1;READONLY=FALSE;CREATE_DB=\"%s\";DBQ=%s",sDriver, sExcelFile, sExcelFile);
  152. // 创建数据库 (既Excel表格文件)
  153. if( database.OpenEx(sSql,CDatabase::noOdbcDialog) )
  154. {
  155. // 创建表结构
  156. int i;
  157. LVCOLUMN columnData;
  158. CString columnName;
  159. int columnNum = 0;
  160. CString strH;
  161. CString strV;
  162. sSql = "";
  163. strH = "";
  164. columnData.mask = LVCF_TEXT;
  165. columnData.cchTextMax =100;
  166. columnData.pszText = columnName.GetBuffer (100);
  167. for(i=0;pList->GetColumn(i,&columnData);i++)
  168. {
  169. if (i!=0)
  170. {
  171. sSql = sSql + ", " ;
  172. strH = strH + ", " ;
  173. }
  174. sSql = sSql + " " + columnData.pszText +" TEXT";
  175. strH = strH + " " + columnData.pszText +" ";
  176. }
  177. columnName.ReleaseBuffer ();
  178. columnNum = i;
  179. sSql = "CREATE TABLE " + tableName + " ( " + sSql + " ) ";
  180. database.ExecuteSQL(sSql);
  181. // 插入数据项
  182. int nItemIndex;
  183. for (nItemIndex=0;nItemIndex<pList->GetItemCount();nItemIndex++){
  184. strV = "";
  185. for(i=0;i<columnNum;i++)
  186. {
  187. if (i!=0)
  188. {
  189. strV = strV + ", " ;
  190. }
  191. strV = strV + " '" + pList->GetItemText(nItemIndex,i) +"' ";
  192. }
  193. sSql = "INSERT INTO "+ tableName
  194. +" ("+ strH + ")"
  195. +" VALUES("+ strV + ")";
  196. database.ExecuteSQL(sSql);
  197. }
  198. }
  199. // 关闭数据库
  200. database.Close();
  201. warningStr.Format("Excel文件成功保存至%s",sExcelFile);
  202. AfxMessageBox(warningStr);
  203. return sExcelFile;
  204. }
  205. return "";
  206. }
  207. void CExcelImpl::ReadExcelToList(CListCtrl* pList, CString strTitle,DWORD &dwListCount)
  208. {
  209. //strTitle+=".xls";
  210. CStringArray Rows, Column;
  211. CSpreadSheet varSheet(strTitle, "LoginData");
  212. //pList->DeleteAllItems();//首先清空listview
  213. DWORD oldListCount = dwListCount;
  214. for (int i = 0; i <varSheet.GetTotalRows()-1; i++)
  215. {
  216. // 读取一行
  217. varSheet.ReadRow(Rows, i+2);
  218. CString strContents = "";
  219. pList->InsertItem(i+oldListCount, strContents) ;
  220. for (int j = 0; j < Rows.GetSize(); j++)
  221. {
  222. strContents = Rows.GetAt(j);
  223. pList->SetItemText(i+oldListCount,j,strContents);
  224. }
  225. dwListCount++;
  226. }
  227. }