Chinaunix首页 | 论坛 | 博客
  • 博客访问: 506587
  • 博文数量: 197
  • 博客积分: 2071
  • 博客等级: 上尉
  • 技术积分: 1307
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-02 09:49
个人简介

prothes 专注嵌入式的ARM linux

文章分类

全部博文(197)

文章存档

2014年(3)

2013年(16)

2012年(108)

2011年(70)

分类: LINUX

2011-11-05 14:46:18

 
 
#include    
int main()  
{  
    FILE* pFile;  
    float buffer[] = { 2.0 , 3.0 , 8.0 };  
    pFile = fopen("myfile.bin" , "wb"); // 打开文件写操作   
    fwrite(buffer , 1 , sizeof(buffer) , pFile); // 把浮点数组写到文件 myfile.bin   
    fclose(pFile); // 关闭文件   
  
    float read[3];  
    pFile = fopen("myfile.bin" , "rb"); // 重新打开文件读操作   
    fread(read , 1 , sizeof(read) , pFile); // 从文件中读数据   
    printf("%f\t%f\t%f\n", read[0], read[1], read[2]);  
  
    fclose(pFile); // 关闭文件   
    return 0;  
 
 
/* fread example: read a complete file 读取一个完整的文件 */  
#include    
#include    
  
int main()  
{  
    FILE* pFile;   //文件指针   
    long lSize;   // 用于文件长度   
    char* buffer; // 文件缓冲区指针   
    size_t result;  // 返回值是读取的内容数量   
  
    pFile = fopen("myfile.bin" , "rb");  
    if (pFile == NULL) {fputs("File error", stderr); exit(1);}    // 如果文件错误,退出1   
  
    // obtain file size:  获得文件大小   
    fseek(pFile , 0 , SEEK_END); // 指针移到文件末位   
    lSize = ftell(pFile);  // 获得文件长度   
    rewind(pFile);  // 函数rewind()把文件指针移到由stream(流)指定的开始处, 同时清除和流相关的错误和EOF标记   
  
    // allocate memory to contain the whole file: 为整个文件分配内存缓冲区   
    buffer = (char*) malloc(sizeof(char) * lSize); // 分配缓冲区,按前面的 lSize   
    if (buffer == NULL) {fputs("Memory error", stderr); exit(2);}  // 内存分配错误,退出2   
  
    // copy the file into the buffer:  该文件复制到缓冲区   
    result = fread(buffer, 1, lSize, pFile); // 返回值是读取的内容数量   
    if (result != lSize) {fputs("Reading error", stderr); exit(3);} // 返回值如果不和文件大小,读错误   
  
    /* the whole file is now loaded in the memory buffer. */ //现在整个文件载入内存缓冲区   
  
    // 读到内存,看自己怎么使用了...............   
    // ...........   
  
  
    // terminate // 文件终止   
    fclose(pFile);  
    free(buffer);  
    return 0;  
}
本篇文章来源于 Linux公社网站()  原文链接:
本篇文章来源于 Linux公社网站()  原文链接:
阅读(862) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~