我试图读取一个文件,然后打印它,但是循环没有结束。为什么??

我的文件包含一行,例如

    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结束时结束。

最佳答案

您使用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;
    }

10-08 05:41