mfc文本显示末尾乱码问题
发布网友
发布时间:2小时前
我来回答
共2个回答
热心网友
时间:1小时前
char *str= new char[nLength + 1];
myFile.ReadHuge(str,nLength);
str[nLength] = 0;
就可以了 你的问题是没有找到结束符而已
热心网友
时间:1小时前
没用过这么一个控件,不过,我觉得是你的数组长度的问题,试试
char *str=new char[nLength+1];
不行的话试试myFile.ReadHuge(str,nLength); 这个函数的nLength改为nLength+1(1不行换大点试试)。
希望能给你帮助