C++ 控制檯讀寫excel
為求簡單方便,直接使用開源——CSpreadSheet.h檔案在CodeProject和CodeGuru上都有,其實是這個檔案有問題。這個標頭檔案既包括了CSpreadSheet類的定義,還包括這個類的實現,這樣所有包含這個標頭檔案的類都有一份這個類的實現,連結的時候可能會出錯了。只要工程中有兩個以上的地方包含這個標頭檔案就會出現錯誤。解決的辦法很簡單,建立一個CSpreadSheet.cpp檔案,然後在這個檔案的開頭加上:
#include “stdafx.h”
#include “CSpreadSheet.h”
#include “CSpreadSheet.h”
然後把CSpreadSheet.h檔案中從”// Open spreadsheet for reading and writing”(含)到”#endif”(不含)之前的語句都剪下到CSpreadSheet.cpp中,也就是將類的宣告和實現分離,再將CSpreadSheet.cpp檔案加到工程中,這樣就可以了。
注意在上述操作完成後,仍然會有可能出錯——原因是使用了MFC庫,因此在工程中要相應地進行設定,包括:
1、新增MFC類庫支援——在stdafx.h檔案中新增
#include <afxwin.h>
#include <afxext.h>
2、設定工程的字元型別——VS預設是Unicode;
3、根據出錯資訊選擇程式碼生成中的執行時庫(至少我的這一步是要求作修改的)
使用樣例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
int _tmain( int argc,
_TCHAR* argv[]) { //
Create a new Excel spreadsheet, filename is test.xls, sheetname is TestSheet CSpreadSheet
SS( "d:\\name1.xls" , "Sheet1" , false ); //
read CStringArray
sampleArray, testRow, Rows, Column; CString
tempString; int i
= 0; for (i
= 1; i <= SS.GetTotalRows(); i++) { //
Read row SS.ReadRow(Rows,
i); for ( int j
= 1; j <= Rows.GetSize(); j++) { if (j
!= Rows.GetSize()) { printf ( "%s\t" ,
Rows.GetAt(j-1)); } else { printf ( "%s\n" ,
Rows.GetAt(j-1)); } } } //
print out total number of columns printf ( "\nTotal
number of columns = %d\n\n" ,
SS.GetTotalColumns()); //
Read and print out contents of second column of spreadsheet SS.ReadColumn(Column,
2); for (i
= 0; i < Column.GetSize(); i++) { printf ( "Column
2 row %d: %s\n" ,
i+1, Column.GetAt(i)); } //
Read in and print out the cell value at column 3, row 3 of spreadsheet if (SS.ReadCell(tempString,
3, 3)) { printf ( "\nCell
value at (3,3): %s\n" ,
tempString); } else { //
print out error message if cell value cannot be read printf ( "Error:
%s\n" ,
SS.GetLastError()); } return 0; } |
轉載於http://www.cnblogs.com/bruce5/archive/2012/06/20/2556376.html
相關文章
- c++控制檯寫一個計時器C++
- mfc 讀寫 excel 示例 C++ libxlExcelC++
- 讀取控制檯輸入
- [C++]常用的windows控制檯操作C++Windows
- python 讀寫 excelPythonExcel
- 05 Shell read讀取控制檯輸入
- python openpyxl讀寫excelPythonExcel
- C\C++控制檯程式隱藏方法總結C++
- python讀寫excel檔案PythonExcel
- python讀寫excel表操作PythonExcel
- Excel讀寫合集:Excel讀寫小白從不知所措到輕鬆上手Excel
- zookeeper控制檯
- log4j.properties 列印到控制檯 寫法
- JAVA控制檯下:控制檯商城購物系統Java
- C++實現控制檯學生學籍管理系統C++
- Go 語言讀寫 Excel 文件GoExcel
- python讀寫Excel表格程式碼PythonExcel
- C++讀寫檔案C++
- C++檔案讀寫C++
- 控制檯快捷鍵
- rocketmq 管理控制檯MQ
- 用 Node.js 給樹莓派寫了個控制檯Node.js樹莓派
- C++檔案讀寫操作C++
- c++中的讀寫鎖C++
- C/C++ 檔案讀寫C++
- C++讀寫檔案操作C++
- Chrome控制檯技巧篇Chrome
- 控制檯編碼系列
- rocketmq控制檯安裝MQ
- VKDebugConsole App黑盒控制檯GCAPP
- Python讀寫EXCEL檔案常用方法大全PythonExcel
- java讀取excel為物件並進行讀寫操作JavaExcel物件
- C++程式設計_簡易計時器(Timer)的控制檯實現C++程式設計
- json的使用(python寫,c++讀)JSONPythonC++
- 有趣的控制檯玩法:一行程式碼繪製控制檯影像!行程
- Sentinel 實戰-控制檯篇
- gitlab 如何進入控制檯Gitlab
- idea控制檯中文亂碼Idea
- Python excel表格讀寫,格式化處理PythonExcel