取决于文件中数据的存储方式。
1 如果文件中存储的方式为二进制形式数据:
需要使用fread(C语言风格)或ifsteam的read成员函数(C++风格。)从文件中读取结构体数据到对应的结构体指针上。
如
struct test
{
int a;
};
struct test t;
fread(&t, 1,sizeof(t), fp);
或
file.read(&t, sizeof(t));
2 如果文件中,是以文本方式存储的可读的结构体数据:
需要根据文件中数据的存储格式,通过fscanf(C语言风格)或ifstream的>>成员函数,读取各个值到对应的结构体成员变量中。
如 struct test t;
fscanf(fp, "%d",&t.a);
或
file>>t.a;
#include
using namespace std;
typedef struct hardware{
int num;
int amount;
int price;
}instruction;
int main()
{
instruction code[100] = {0};
for ( int j=0; j < 100; ++j )
{
code[j].amount += j*2;
code[j].num += j*4;
code[j].price += j*8;
}
FILE* hbin = fopen("hbin.txt", "w");
for (j = 0; j < 100; j++)
fwrite(&code[j], sizeof(instruction), 1, hbin);
fclose(hbin);
ifstream iFile("hbin.txt", ios::binary);
if ( !iFile )
{
cout<<"open file error!"<
}
iFile.seekg(0,ios::end);
int iFileSize = iFile.tellg();
iFile.seekg(0,ios::beg);
char* psbBuf = new char[iFileSize];
memset(psbBuf, 0, iFileSize);
iFile.read(psbBuf,iFileSize);
instruction* pware = (instruction*)psbBuf;
instruction ac[100] = {0};
for ( int i =0; i < iFileSize/sizeof(instruction); ++i)
{
ac[i].amount=pware->amount;
ac[i].num=pware->num;
ac[i].price=pware->price;
cout<
}
return 0;
}
和这个差不多啊,主要是把fwrite换成fread
二进制,fopen的参数,要加上b
写成FILE *fp = fopen("hbin.txt", "rb");
否则读不完整
这个没有捷径..
1.你可以用正则表达直接匹配。
2.需要你自己按行解析了。
1.
FILE *hbin = fopen("hbin.txt", "r");
fread(code, sizeof(instruction), 100, hbin);
fclose(hbin);