0

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

文件内容

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

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

以及该代码的结果: 在此处输入图像描述

4

3 回答 3

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
于 2013-07-28T06:34:21.480 回答
2

您可以使用以下命令将每一行读入 a vectorof :stringsstd::getline

#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);
}
于 2013-07-28T06:36:04.350 回答
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 行。

于 2013-07-28T07:23:05.740 回答