尝试从输入文件中获取字符

Attempting to get character from an input file

本文关键字:获取 字符 文件 输入      更新时间:2023-10-16

我正在尝试从输入文件中获取字符,但我无法真正让它工作,有人可以帮助我吗?我提前为格式道歉,这让我感到困惑。

open_input_and_output_file基本上检查您是否可以打开文件,在 OTP 中,我尝试将每个字符从一个文件获取到另一个文件。由于我无法让它工作,我首先尝试在控制台应用程序中显示这些字符,但这也不起作用。

任何帮助将不胜感激,我希望提供的信息足够。

    bool open_input_and_output_file(ifstream& infile, ofstream& outfile)
{
//Precondition: True
assert(true);
//Postcondition: Inputfile and outputfile have either been opened succesfully or you have been notified of it not opening succesfully.
string inputfile;
string outputfile;
cout<<"nPlease enter an input-file name (no spaces): ";
cin>>inputfile;
cout<<"NOTE: Input-file name and output-file name can NOT be the same!"<<endl;
cout<<"Please enter an output-file name (no spaces): ";
cin>>outputfile;
if(inputfile != outputfile)
{
    cout<<"Input-file name and output-file name are not the same! Good job on reading!"<<endl;
    ifstream infile(inputfile.c_str());
    if(infile)
        cout<<"Input-file: "<<inputfile<<" was opened succesfully!"<<endl;
    if(!infile)
        cout<<"Inputfile: "<<inputfile<<" could not be opened!"<<endl;
    ofstream outfile(outputfile.c_str());
    if(outfile)
        cout<<"Output-file: "<<outputfile<<" was opened succesfully!"<<endl;
    if(!outfile)
        cout<<"Outputfile: "<<outputfile<<" could not be opened!"<<endl;
}
else
{
    cout<<"Input-file name and output-file name are the same!"<<endl;
    cout<<"Opening has failed!"<<endl;
}
return 0;
}
void OTP(ifstream& infile, ofstream& outfile)
{
int choice;
char character;
unsigned int r;
srand(r);
cout<<"nPlease enter 0 to encrypt or 1 to decrypt: ";
cin>>choice;
if(open_input_and_output_file(infile,outfile))
{
    infile.get(character);
    cout<<character;
}

}

我会说错误在这里

cout<<"Input-file name and output-file name are not the same! Good job on reading!"<<endl;
ifstream infile(inputfile.c_str());

应该是

cout<<"Input-file name and output-file name are not the same! Good job on reading!"<<endl;
infile.open(inputfile.c_str());

你在输出文件上犯了同样的错误。

ofstream outfile(outputfile.c_str());

应该是

outfile.open(outputfile.c_str());

您将 infile 和 outfile 作为参数传递给 open_input_and_output_file 函数,但随后在函数中再次声明它们。因此,当您打开文件时,您没有使用传递给open_input_and_output_file的流,而是使用该函数本地的流。传递给open_input_and_output_file的溪流保持关闭。