在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
从CSV文件中读取数据代码:bool speechManager::fileIsEmpty() { //创建文件流 ofstream ifs(FILENAME, ios::in); //判断文件是否打开成功 if(!ifs.is_open()) { cout << "open false" << endl; return false; } char ch; ifs >> ch; if(ifs.eof()) { //文件为空 cout << "no records" << endl; ifs.close(); return false; } //读取记录 ifs.seekg(0, std::ios::beg); int count = 0; //记录总共记录有多少条 vector<string> vec; //按行读取每一届记录,有几届就有几个string string str; //每一行读取的数据 while(getline(ifs, str)) { vec.push_back(str); count++; } //关闭文件 ifs.close(); return true; } 运行报错:
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论