本文介绍了使用Redafile读取Unicode文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须使用MSDN的Readfile api读取一个unicode文件 []。



Hi, I have to read a unicode file using Readfile api of MSDNhttp://msdn.microsoft.com/en-us/library/windows/desktop/aa365467(v=vs.85).aspx[^].

char*	pBuf = NULL;
....
pBuf = (char*)new char[ dwFileSize+1 ];
bResult = ::ReadFile( hFile, pBuf, dwFileSize, &br, NULL );





但它即将到来pBuf中的垃圾值?



任何想法如何解决这个问题。以上代码适用于多字节文件...



注意:如果您知道解决方案,请发表评论。



But it is coming garbage value in pBuf?

Any Idea how to solve this. Above code fine for Multibyte files...

NOTE: Please comment / ans if you know solution.

推荐答案



这篇关于使用Redafile读取Unicode文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 04:33