我有一个文本文件,此文件包含以下内容:
文件内容
27013.
Jake lexon.
8 Gozell St.
25/7/2013.
0.
我想将文件内容保存到数组中,每行保存在数组项中,如:
理论上
new array;
array[item1] = 27013.
array[item2] = Jake lexon.
array[item3] = 8 Gozell St.
array[item4] = 25/7/2013.
array[item5] = 0.
我尝试了很多,但我失败了。
使用c风格数组的原因是,因为我希望熟悉c-style array
和vector
两种方式,而不仅仅是vector
的简单方法。
首先,调试器不会给我任何错误。 这就是我使用的代码。
fstream fs("accounts/27013.txt", ios::in);
if(fs != NULL){
char *str[100];
str[0] = new char[100];
int i = 0;
while(fs.getline(str[i],100))
{
i++;
str[i] = new char[100];
cout << str[i];
}
cin.ignore();
} else {
cout << "Error.";
}
以及该代码的结果:
答案 0 :(得分:3)
这种方法很简单:
// container
vector<string> array;
// read file line by line and for each line (std::string)
string line;
while (getline(file, line))
{
array.push_back(line);
}
// that's it
答案 1 :(得分:2)
您可以使用std::getline
将每一行读成vector
strings
:
#include <fstream>
#include <vector>
#include <string>
std::ifstream the_file("the_file_name.txt");
std::string s;
std::vector<std::string> lines;
while (std::getline(the_file, s))
{
lines.push_back(s);
}
答案 2 :(得分:1)
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
fstream fs;
fs.open("abc.txt",ios::in);
char *str[100];
str[0] = new char[100];
int i = 0;
while(fs.getline(str[i],100))
{
i++;
str[i] = new char[100];
}
cin.ignore();
return 0;
}
注意:这假设每行不超过100个字符(包括换行符),并且您的行数不超过100行。