为什么我一直收到此文件错误?

时间:2014-09-11 18:44:33

标签: c++

我正在尝试从一个文件中读取信息,然后它将转换读入的信息并将其输出到另一个文件。然后我需要删除原始文件并重命名包含更新信息的第一个第二个文件。我试图通过调用原始文件,转换信息并将信息保存到新文件,然后使用删除函数和C ++中的重命名函数来做到这一点。知道为什么我在打开文件时出错了吗?

data.txt包含

  • XCIX
  • 4999
  • XI
  • IX
  • 55
  • 95

temp.txt为空

两者都保存在C:\ Users \ Owner \ Documents \ Visual Studio 2013 \ Projects \ Roman Numerals \ Debug

int main() 
{
fstream dataFile;   
fstream outfile;    
string line;
string output;
outfile.open("temp.txt", ios::out);
dataFile.open("data.txt", ios::in);

if (!dataFile)
{   
    cout << "File Error\n";

}
else
{
    cout << "Opened correctly!\n" << endl;
    while (dataFile)
    {
        if (dataFile.eof()) break;
        getline(dataFile, line);
        if (line[1] == '1' || line[1] == '2' || line[1] == '3' || line[1] == '4' || line[1] == '5' || line[1] == '6' || line[1] == '7' || line[1] == '8' || line[1] == '9' || line[1] == '0')
        {
            outfile << numbertonumberal(line) << "\n";
        }
        else
        {
            outfile << romantonumberal(line) << "\n";
        }
    }

    dataFile.close();
    remove("data.txt");
    rename("temp.txt", "data.txt");
    cout << "All values have been converted are are in the original file\n";
    outfile.close();
}


return 0;
}

我的输出是一行,表示文件错误。

1 个答案:

答案 0 :(得分:0)

首先:检查文件。它存在吗?你在代码上有一些错误:

if (!dataFile) // incorrect. datafile is instance of class but not ponter
if (datafile.is_open()) // correct. use a method from fstream class

while (dataFile) // incorrect. its true while object "datafile" exists (see above)
while (!datafile.eof()) // correct. And you don`t need "if (dataFile.eof()) break;"

所以,你的代码应该是这样的:

if(datafile.is_open()) {
    while(!datafile.eof()) {
        getline(datafile, line);

        ... // use isdigit() function for compare with digits (<cctype> header)
    }
} else {
    cerr << "Cannot open file" << endl;
}