如果有超过1000个字符,我想跳过在INI文件中读取一行。这是我正在使用的代码:
#define MAX_LINE 1000
char buf[MAX_LINE];
CString strTemp;
str.Empty();
for(;;)
{
is.getline(buf,MAX_LINE);
strTemp=buf;
if(strTemp.IsEmpty()) break;
str+=strTemp;
if(str.Find("^")>-1)
{
str=str.Left( str.Find("^") );
do
{
is.get(buf,2);
} while(is.gcount()>0);
is.getline(buf,2);
}
else if(strTemp.GetLength()!=MAX_LINE-1) break;
}
//is.getline(buf,MAX_LINE);
return is;
...
我面临的问题是,如果字符超过1000,如果似乎落入无限循环(无法读取下一行)。如何让getline跳过该行并读取下一行?? < / p>
答案 0 :(得分:1)
const std::size_t max_line = 1000; // not a macro, macros are disgusting
std::string line;
while (std::getline(is, line))
{
if (line.length() > max_line)
continue;
// else process the line ...
}
答案 1 :(得分:0)
检查getline
的返回值如何,如果失败则中断?
..或如果is
是一个istream,你可以检查一个eof()条件来解决你。
#define MAX_LINE 1000
char buf[MAX_LINE];
CString strTemp;
str.Empty();
while(is.eof() == false)
{
is.getline(buf,MAX_LINE);
strTemp=buf;
if(strTemp.IsEmpty()) break;
str+=strTemp;
if(str.Find("^")>-1)
{
str=str.Left( str.Find("^") );
do
{
is.get(buf,2);
} while((is.gcount()>0) && (is.eof() == false));
stillReading = is.getline(buf,2);
}
else if(strTemp.GetLength()!=MAX_LINE-1)
{
break;
}
}
return is;
答案 2 :(得分:0)
对于完全不同的东西:
std::string strTemp;
str.Empty();
while(std::getline(is, strTemp)) {
if(strTemp.empty()) break;
str+=strTemp.c_str(); //don't need .c_str() if str is also a std::string
int pos = str.Find("^"); //extracted this for speed
if(pos>-1){
str=str.Left(pos);
//Did not translate this part since it was buggy
} else
//not sure of the intent here either
//it would stop reading if the line was less than 1000 characters.
}
return is;
这使用字符串以方便使用,并且没有对行的最大限制。它还使用std::getline
作为动态/魔法的一切,但我没有在中间翻译,因为它对我来说似乎非常错误,我无法解释意图。
中间的部分一次只读取两个字符,直到它到达文件的末尾,然后之后的所有内容都会产生奇怪的东西,因为你没有检查返回值。由于它是完全错误的,我没有解释它。