C++读取CSV表格
看到这个题目可能会有人问什么是CSV表格呢,在我做这个实现之前我也是没有听说过CSV表格,更不知道他有什么用了。CSV是一种Excel表格的导出格式,在Excel表格的菜单栏中点击文件->另存为会弹出一个文件夹浏览窗口,在下拉框中可以选择保存格式,其中有一个就是.CSV(逗号分隔符)选项。
CSV表格的规则:
1 开头是不留空,以行为单位。
2 可含或不含列名,含列名则居文件第一行。
3 一行数据不垮行,无空行。
4 以半角逗号(即,)作分隔符,列为空也要表达其存在。
5 列内容如存在半角逗号(即,)则用半角引号(即"")将该字段值包含起来。
6 列内容如存在半角引号(即")则应替换成半角双引号("")转义,并用半角引号(即"")将该字段值包含起来。
7 文件读写时引号,逗号操作规则互逆。
8 内码格式不限,可为 ASCII、Unicode 或者其他。
9 不支持特殊字符
CSV表格的用途:
CSV表格也相当于关系数据库中的二维表,但是他并不支持SQL语句的查询,只能通过一些手段将表格内容存入合适的数据结构中便于查询。如果结构选择的合适,那么查询起来还是很方便的,但是他不利于表格中数据的更新,更新就好比是文件的操作一样,各种文件指针游来游去,很繁琐。如果程序中要使用外部数据,数据又不多不值当去用数据库的话,就可以考虑使用CSV表格存储外部数据,每当程序执行时可以从外部读取数据进入内存,避免了程序因数据的改动而重新编译。
使用C++读取CSV表格的大致思路:
1:以打开文件的方式打开CSV表格,通过文件指针的各种游走,划分出每一行,将一行数据存到一个string对象中。循环读取文件中的每一行,文件读取完毕后悔生成一个map<int, string>这样的对象,int表示行号,string表示这一行中的所有字符。使用到的函数是strchr
2:再对每一行进行分割,分割的标准就是逗号。这样对每一行来说会被分割出cols个string对象,把这些对象也存储在一个map<int, string>对象中,这里的int表示从左到右的列号,从1数起。这样每一行数据会生成一个
map<int, string>对象,处理完一个文本会生成一个map<int, map<int, stirng>>对象。利用一个二重的映射关系将表格中的每一个字段全部有规律的存储起来。
下面是具体的实现代码:
[cpp]
#pragma once
//#include "stringparser.h"
#include <assert.h>
#include <map>
#include <vector>
#include <string>
#include "SkillRecord.h"
using namespace std;
typedef unsigned long u32;
class CppCSV
{
private:
map<u32, map<u32, string>> m_stringMap;
string m_CSVName;
public:
CppCSV(){}
CppCSV(const char *path)
{
assert(LoadCSV(path));
}
~CppCSV(){}
bool LoadCSV(const char *path);
bool SaveCSV(const char *path = NULL);
bool GetIntValue(u32 uiRow, u32 uiCol, int &riValue);
bool GetFloatValue(u32 uiRow, u32 uiCol, float &rfValue);
string* GetStringValue(u32 uiRow, u32 uiCol);
int GetParamFromString(string str, vector<string> &stringVec, char delim = ',');
map<u32, map<u32, string>>& GetCSVMap()
{
return m_stringMap;
}
void GetSkillRecordMapTable(map<int, SkillRecord> &sSkillMapTable);
};
#pragma once
//#include "stringparser.h"
#include <assert.h>
#include <map>
#include <vector>
#include <string>
#include "SkillRecord.h"
using namespace std;
typedef unsigned long u32;
class CppCSV
{
private:
map<u32, map<u32, string>> m_stringMap;
string m_CSVName;
public:
CppCSV(){}
CppCSV(const char *path)
{
assert(LoadCSV(path));
}
~CppCSV(){}
bool LoadCSV(const char *path);
bool SaveCSV(const char *path = NULL);
bool GetIntValue(u32 uiRow, u32 uiCol, int &riValue);
bool GetFloatValue(u32 uiRow, u32 uiCol, float &rfValue);
string* GetStringValue(u32 uiRow, u32 uiCol);
int GetParamFromString(string str, vector<string> &stringVec, char delim = ',');
map<u32, map<u32, string>>& GetCSVMap()
{
return m_stringMap;
}
void GetSkillRecordMapTable(map<int, SkillRecord> &sSkillMapTable);
};
[cpp]
#include "CppCSV.h"
#include <stdio.h>
//#include "stringparser.h"
bool CppCSV::LoadCSV(const char *path)
{
FILE *pFile = fopen(path, "r");
if (pFile)
{
fseek(pFile, 0, SEEK_END);
u32 uSize = ftell(pFile);
rewind(pFile);
char *fileBuffer = new char[uSize];
fread(fileBuffer, 1, uSize, pFile);
map<u32, string> stringMap;
u32 uiIndex = 1;
char *pBegin = fileBuffer;
char *pEnd = strchr(pBegin, '\n');
pBegin = pEnd + 1;
pEnd = strchr(pBegin, '\n');
while (pEnd)
{
string strTemp;
strTemp.insert(0, pBegin, pEnd-pBegin);
assert(!strTemp.empty());
stringMap[uiIndex++] = strTemp;
pBegin = pEnd + 1;
pEnd = strchr(pBegin, '\n');
}
delete []fileBuffer;
fileBuffer = NULL;
pBegin = NULL;
pEnd = NULL;
map<u32, string>::iterator iter = stringMap.begin();
for (; iter != stringMap.end(); ++iter)
{
 
补充:软件开发 , C++ ,