我需要从 txt 文件中为我的 Linux 程序读取参数。但结果是,从txt文件中读取的一些参数值正确,但有些参数值错误。有人遇到过这个问题吗?我已经用命令 dos2unix 将 windows 中的 txt 格式翻译成 Linux。我需要你的帮助,谢谢。
读取函数如下:
template <class T>int ReadFileVar(ifstream *inClientFile, const char var_name[], T *var)
{
//inClientFile - pointer to the previously opened File stream
//var_name - contains the name of the variable
//var - pointer to a long, the function will return the value of the variable in this
int length_var_name = (int) strlen(var_name);
char line[512];
int i, j;
while (inClientFile->getline(line,512))
{
if (line[0] != '/' && line[1] != '/')
{
i = 0;
while (line[i] != '\0')
{
if (!strncmp(&line[i],var_name,length_var_name))
{
j = i + length_var_name;
while (line[j] != '\0')
{
if ( line[j] >= '0' && line[j] <= '9')
{
*var = (T) atof(&line[j]);
inClientFile->seekg( 0, ios_base::beg ); //back to the beginning of the file
return 0;
}
j++;
}
}
i++;
}
}
}
cerr << var_name << " - cannot be found" << endl;
throw "error reading input data from: ";
return 1; //the specified variable was not found in the file
}
例如:
txt中的参数如下:,类型为long,
nx=100;
ny=100;
nz=100;
ipro=1;
jpro=1;
kpro=1;
但是在我的程序中阅读了 txt 之后,我得到了这些,
nx=100;
ny=100;
nz=15;
ipro=1;
jpro=1;
kpro=100;
我已经在Windows下测试过这个程序,它可以工作!