首席需要用到fstream头文件,然后用ifstream就可以了。
我给LZ写一个例子,lz看一下就明白了:
strcut stockType
{
string personAddress;
string personCity;
string personState;
int personZIP;
};
void addressType :: getData()
{
ifstream infile;
int index;
string inputFile;
stockType addressTypeList[NO_OF_PERSON];
cout<<"Enter the file path: ";
cin>>inputFile; //输入txt文件路径
cout<
infile(inputFile.c_str()); //infile按照指定路径读取txt文件
for(index = 0; index < NO_OF_PERSON; index++)//读取txt文件至struct
{
infile>>addressTypeList[index].personAddress;
infile>>addressTypeList[index].personCity;
infile>>addressTypeList[index].personState;
infile>>addressTypeList[index].personZIP;
}
}
直接给你个参考:(你的文件必须在当前的目录下,名为test.txt)#include
首席需要用到fstream头文件,然后用ifstream就可以了。
我给LZ写一个例子,lz看一下就明白了:
strcutstockType
{
stringpersonAddress;
stringpersonCity;
stringpersonState;
intpersonZIP;
};
voidaddressType::getData()
{
ifstreaminfile;
intindex;
stringinputFile;
stockTypeaddressTypeList[NO_OF_PERSON];
cout<<"Enterthefilepath:";
cin>>inputFile;//输入txt文件路径
cout<
for(index=0;index
infile>>addressTypeList[index].personAddress;
infile>>addressTypeList[index].personCity;
infile>>addressTypeList[index].personState;
infile>>addressTypeList[index].personZIP;
}
}
解决方法一:
做一个解析函数。
逐个字符读取,对不同类型做分类处理。
抛石头引什么来着,
waiting...
直接用读文件函数对文件进行读,并将读到的数据存在数组中