ifstream不读EOF字符

时间:2011-06-28 19:40:01

标签: c++ ifstream eof

我正在创建一个程序(在C ++中),它接受一个ASCII文件并从每一行读取一些值,直到它到达文件的末尾。我正在使用ifstream来读取文件,当我使用ifstream.eof()方法时,我从未遇到过停止问题。但是,这一次,即使它在我的测试用例中找到了eof字符,当我分析其他文件时,它仍然是无限循环,因为它永远不会找到eof字符。这是编码问题,还是我文件的问题?

string line = "";
unsigned long pos = 0;
ifstream curfile(input.c_str());
getline(curfile, line);
int linenumber = 0;
cout<<"About to try to read the file"<<endl;
if (!curfile.good())
    cout<<"Bad file read"<<endl;
while (!curfile.eof())
{

    cout<<"Getting line "<<linenumber<<endl;
    linenumber++;
    pos = line.find_first_of(' ');
    line = line.substr(pos+1, line.size()-1);
    pos = line.find_first_of(' ');
    current.push_back(atof(line.substr(0, pos).c_str()));
    for (int i = 0; i<4; i++)
    {
        pos = line.find_first_of(' ');
        line = line.substr(pos+1, line.size()-1);
    }
    pos = line.find_first_of(' ');
    dx.push_back(atof(line.substr(0, pos).c_str()));
    pos = line.find_first_of(' ');
    line = line.substr(pos+1, line.size()-1);
    pos = line.find_first_of(' ');
    dy.push_back(atof(line.substr(0, pos).c_str()));
    getline(curfile, line);
}

编辑:当我第一次运行循环时,currentfile.good()返回false ...我在做什么导致它返回?

4 个答案:

答案 0 :(得分:4)

首先,你不应该那样检查。在{<>> 读取失败后,eof()才会返回true。但你可以做得更好(也更容易)!

检查流状态,隐式转换为void*,可以在bool上下文中使用。由于对流的大多数读取操作都返回对流的引用,因此您可以编写一些非常简洁的代码,如下所示:

std::string line;
while(std::getline(currentfile, line)) {
    // process line
}

基本上它正在做的是说“虽然我可以成功地从currentfile中提取一行,但请执行以下操作”,无论如何,这是你真正要说的内容; - );

就像我说的,这适用于大多数流操作,所以你可以这样做:

int x;
std::string y;
if(std::cin >> x >> y) {
    // successfully read an integer and a string from cin!
}

编辑:我重写代码的方式是这样的:

string line;
unsigned long pos = 0;
int linenumber = 0;

ifstream curfile(input.c_str());

std::cout << "About to try to read the file" << std::endl;
while (std::getline(curfile, line)) {

    std::cout << "Getting line " << linenumber << std::endl;
    linenumber++;

    // do the rest of the work with line
}

答案 1 :(得分:2)

不要那样做。

EOF并不是您在阅读时唯一会遇到的事情。你可能会遇到很多错误,因此最好只是简单地测试一下流本身:

while(currentfile)
{
    // read somehow
}

如果你正在读行,那么最简单的方法是:

std::string line;
while(std::getline(currentfile, line))
{
    // use line
}

答案 2 :(得分:2)

您对getline的第一次调用是触发ifstream对象上的一个失败位。这就是为什么如果使用ios::good()检查失败位,则永远不会进入读循环。我会查看line的价值是什么......它可能是空的,这意味着您在阅读文件时遇到了另一个问题,例如权限问题等等。

答案 3 :(得分:1)

问题在于:

if (!curfile.good())
    cout<<"Bad file read"<<endl;   // OK you print bad.
while (!curfile.eof())             // But the loop is still entered.
                                   // Another reason to **NEVER** to use 
                                   // while (file.eof()) // as bad does not mean eof
                                                         // though eof is bad

试试这个:

void readFile(std::istream& str)
{   
    std::string     line;
    while(std::getline(str, line))
    {
        std::stringstream   lineStream(line);
        std::string         ignoreWord;
        int                 number[3];

        lineStream >> ignoreWord   // reads one space seporated word
                   >> number[0]    // reads a number
                   >> ignoreWord >> ignoreWord >> ignoreWords  // reads three words 
                   >> number[1]    // reads a number
                   >> number[2];   // reads a number

        current.push_back(number[0]);
        dx.push_back(number[1]);
        dy.push_back(number[2]);
    }   
}