我正在使用 Libxl for c++ 从 .xlsx 文件中读取。代码如下
void main()
{
Book* book = xlCreateXMLBook();
if (book) {
if(book->load("input.xlsx")) {
Sheet* sheet = book->getSheet(0);
if (sheet) {
long int id;
for(int i=1; i<15; i++) {
id = sheet->readNum(i,0);
cout << id << endl;
}
}
}
}
book->release();
}
excel表有以下数据,输出似乎不同。
Original Data | Output from code
UNKNOWN | 0
47012 | 141366
48964 | 154840
425214 | 0
47018 | 134427
任何帮助表示赞赏。