我想获取文件内容并将每行放在数组项中

时间:2013-07-28 06:31:55

标签: c++ file

我有一个文本文件,此文件包含以下内容:

文件内容

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 arrayvector两种方式,而不仅仅是vector的简单方法。

编辑2

首先,调试器不会给我任何错误。 这就是我使用的代码。

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.";
}

以及该代码的结果: enter image description here

3 个答案:

答案 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行。