读取文件

时间:2016-02-10 03:12:18

标签: c++

我正在尝试打印要输出的文件内容,但输出缺少文件中的空格。 我也试过使用infile>> noskipws>> CH;但它只显示文件中的第一个单词。

int process_infile(int shift)
{   
    char c[1000];
    ifstream ifile;
    ifile.open("D:\\example.txt") ;
    if(!ifile)
    {
        //cout<<"Error in opening file..!!";
        error();
        //getch();
        exit(1);
    }
    cout<<"Data in file = ";
    while(ifile.eof()==0)
    {
        ifile >> c;
        cout << c;
        //encodeCaesarCipher(c,shift);
    }       
    ifile.close();
    getch();
    return 1;
}

1 个答案:

答案 0 :(得分:0)

while(ifile.eof()==0)
{
  string line;
  getline(ifile,line);
  cout << line;
        //encodeCaesarCipher(c,shift);
}