c语言对文件打开并显示内容

#include"stdafx.h"#include<stdio.h>#include<conio.h>#include<stdlib.h>#include<string... #include "stdafx.h"
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
long getFileSize(char *path)
{FILE *fp;long iBytes;
fp=fopen(path,"rb");
if(fp==0) return -1;//假如打开失败则返回值-1
fseek(fp,0l,SEEK_END);
iBytes=ftell(fp);
fclose(fp);
return iBytes;
}
unsigned char *readFile(char *path)
{unsigned char *pBuffer;
FILE *fp;
long iBytes;
iBytes=getFileSize(path);
if(iBytes<0) return NULL;
fp=fopen(path,"rb");
pBuffer=(unsigned char *)malloc(iBytes);
fread(pBuffer,1,iBytes,fp);
fclose(fp);
return pBuffer;
}
void main()
{char path[1024];
unsigned char *pBuffer;
printf("Please input the file path!\n");
gets(path);
pBuffer=readFile(path);
if(pBuffer==NULL) printf("文件打开失败~~");
printf("%s",pBuffer);
getch();
}文件是可以打开,但是尾巴有乱码~~
展开
 我来答
a6388578
2012-12-04 · 超过35用户采纳过TA的回答
知道答主
回答量:83
采纳率:0%
帮助的人:85.7万
展开全部
http://zhidao.baidu.com/question/212263297.html

很好的读文件的例子
_FILE_是当前程序文件的路径
你的程序应该没有加上\0结束符 所以有乱码
追问
有没有不用加结束码的吗?我的老师原本写了pBuffer=(unsigned char *)malloc(iBytes+1);

fread(pBuffer,1,iBytes,fp);
pBuffer[iBytes]=0;
但是他加了unsigned就把结束码那条就删除了
追答
pBuffer[iBytes]=0;

这个效果 应该和 pBuffer[iBytes]=‘\0’;一样的
字符串 一定要有 \0 结束的,标志字符串结尾
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式