想用vs2010的c,读取excel里的数字,怎么读取呢
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了想用vs2010的c,读取excel里的数字,怎么读取呢相关的知识,希望对你有一定的参考价值。
参考技术A 你指的是excel 2013中的表格吗?如果是单纯的表格的话,你可以将excel文件另存为".csv" (comma-sperated-version, 中文为逗号分隔)格式,每个逗号对应的就是表格的一个单元。例如// Example.csv
Name, Age, ID
David, 23, 0
就是一个2乘2的表格用.csv的形式来表示的,用C++读入这样的csv文件就可以了,代码如下:
void readCSV(const char* fileName, vector<vector<string>>& csvVector)
ifstream file(fileName);
while (file)
string s;
if (!getline(file, s)) break;
istringstream ss(s);
vector <string> record;
while (ss)
string s;
if (!getline(ss, s, ',')) break;
record.push_back(s);
csvVector.push_back(record);
if (!file.eof())
cerr << "Fooey!\n";
参数中的csvVector是一个二维的vector, 分别代表行和列,每次按行读入。
以上是关于想用vs2010的c,读取excel里的数字,怎么读取呢的主要内容,如果未能解决你的问题,请参考以下文章