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に精通したいからです。vectorvector

編集 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

次を使用して、各行を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

AS YOU DEMAND A SOLUTION WITH VECTORS.(私はまったく好まない)

#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 に答える