摘要: 本文代码都在Windows/VC++6.0下测试过, 在linux/g++下也没有问题。 但是请一定注意linux和Windows文件格式的区别,比如: 1. 当linux上的代码读取Windows文件格式时, 读取结果的每行都会多一个\r, 想想为什么。 2. 当Windows上的代码读取linu 阅读全文
posted @ 2018-02-28 15:43 wjbooks 阅读(15866) 评论(0) 推荐(0) 编辑
摘要: char* textFileRead(char* filename){char* text;FILE *pf = fopen(filename,"r");fseek(pf,0,SEEK_END);long lSize = ftell(pf);// 用完后需要将内存free掉text=(char*)m 阅读全文
posted @ 2018-02-28 15:40 wjbooks 阅读(12952) 评论(0) 推荐(1) 编辑