资源简介
接受C 实现读取和写入文件
代码片段和文件信息
//#include
#include
#include
#include
#include // 用于读写存储在内存中的string对象
int main(void)
{
// 制作CSV文件
/* Nameageheight
* Tom21172.8
* John25189.5
*/
std::ofstream outFile;
outFile.open(“./csvTest.csv“ std::ios::out);
outFile << “Name“ << ““ << “age“ << ““ << “height“ << std::endl;
outFile << “Tom“ << ““ << 21 << ““ << 172.8 << std::endl;
outFile << “John“ << ““ << 25 << ““ << 189.5 << std::endl;
outFile.close();
// 读取CSV文件
struct CSVDATA {
std::string name;
int age;
double height;
};
std::ifstream inFile(“./csvTest.csv“ std::ios::in);
std::string lineStr;
std::vector csvData;
std::getline(inFile l
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 46 2019-11-08 15:18 csvTest.csv
文件 69520 2019-11-08 15:17 debug.exe
文件 1554 2019-11-08 15:17 RWCSV.cpp
相关资源
- C++ MFC调用Javascrip函数
- c++类似于window的屏保曲线算法
- c++ 实现 本科生导师制度系统源码(数
- 密码学基于RCB和CBC的RSA实现(c++)
- c++ 用字符画的形式输出超级玛丽中的
- C++ 数组课件(入门级)
- c++实现:哥德巴赫猜想(6~n的证明)
- c++ 记录键盘事件(vs2003)
- C++实现解方程(代码)
- c++ 布谷鸟算法
- leetcode全部题目的题解:LeetCode题解 (
- 堆和堆排序源代码
- c++ 排队就诊系统源码(数据结构)
- 自写String类即使用
- 一款c++关机程序(定时关机)
- vc++的餐厅前后台点餐软件
- TSP问题遗传算法C/C++实现
- C++程序设计题库(117题).doc
- 银行家算法的实现(c++代码)
- C 播放WAVE音频
- C/C++ 学生管理系统源码(控制台)
- 智商测试(C++坑人版)
- c++ SQL数据库结构提取器模块源码
- c++ 模拟excel排序
- 用于解决著名的奶牛问题
- c++ copy file
- c++ 电话薄数字排序
- c++ 求三角形面积
- 猴子选大王
- 练习数据结构用途
评论
共有 条评论