經典的範例,忘記在哪看 可能有改編,只是記錄 以後要用方便來抄的
檔名是Text_name
收集的資料為: vector<std::string>& Sv
void Load_file_String(std::string Text_name, std::vector<std::string>& Sv) {
std::fstream fin;
Sv.clear();
char line[100];
fin.open(Text_name, std::ios::in);
while (fin.getline(line, sizeof(line), '\n')) {
Sv.push_back(line);
}
}