C++ CSV解析

这个博客介绍了如何使用C++来读取CSV文件。通过FileUtil类,实现了读取CSV资源并触发TableRowEvent回调,处理每一行数据。代码中包含了处理行内容的逻辑,包括对标题和数据的分割。
摘要由CSDN通过智能技术生成
/*
 * FileUtil.h
 *
 *  Created on: 2013-7-1
 *      Author: frodo
 */

#ifndef FILEUTIL_H_
#define FILEUTIL_H_

#include <vector>
#include <stdio.h>

class TableRowEvent{
public:
	virtual void onReadRow(int tag, int count, char** cols, int row)  = 0;
};

class FileUtil {
public:
	FileUtil(){ };
	virtual ~FileUtil(){  };
public:
	static bool readResource(int tag, const char* filename, TableRowEvent* event);
};

#endif /* FILEUTIL_H_ */
/*
 * FileUtil.cpp
 *
 *  Created on: 2013-7-1
 *      Author: frodo
 */

#include "FileUtil.h"
#include <string.h>


void prcessRow(int tag, char* data, size_t dataLen, int row, TableRowEvent* event){

	if(dataLen == 1 && *data == '\r') {
		return;
	}
	int cur = 0;
	int titleCount = 0;

	char* titleBuffer[256];
	for(int i = 0 ; i < 64 ; i&
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值