读取和打印文件中的值

时间:2014-10-11 16:32:08

标签: c++ ifstream eof

我正在尝试读取文件然后打印它,但循环不会结束。为什么?

我的文件包含一行,例如

    66,67,256,258,69,73,

这是我的意见:

char d;
char code2 [12]={0};
string file1;
cout<<"Input file name"<<endl;
cin>>file1;
string file2;
cout<<"Input file name"<<endl;
cin>>file2;

ifstream input;
input.open(file1.c_str());
ofstream output;
output.open(file2.c_str());

while(! input.eof())
    {
        int i=0;
        while(d != ',' && i < sizeof(code2))
        {
            input>>d;
            code2[i]=d;
            i++;
        }
        file2<<code2;
    }

在调试时,我得到了code2的垃圾值。因此,循环不会在while结束时结束。

1 个答案:

答案 0 :(得分:2)

您使用eof()是错误的,并且在初始化之前使用d。尝试更像这样的东西:

char d;
char code2 [13]={0};
string file1;
cout<<"Input file name"<<endl;
cin>>file1;
string file2;
cout<<"Input file name"<<endl;
cin>>file2;

ifstream input;
input.open(file1.c_str());
ofstream output;
output.open(file2.c_str());

int i = 0;
while(input >> d)
    {
    if ((d == ',') || (i == 12))
        {
        code2[i] = 0;
        file2<<code2;
        i = 0;
        }
    code2[i] = d;
    i++;
    }

if (i > 0)
    {
    code2[i] = 0;
    file2<<code2;
    }