Post List

2014년 12월 25일 목요일

MFC File에서 CString 으로 읽었을 때 한글 깨짐 현상 해결 #1 (char* 에서 형변환)


CFile file;
CString fileName = _T("testStr.txt");
char* read;
CString rStr;

if (file.Open(fileName, CFile::modeRead))
{
    UINT nBytes = file.GetLength();
    if (nBytes >= 0)
    {
        read = new char[nBytes +1];
        file.Read(read, nBytes);
        read[nBytes] = 0;
        rStr.Empty();
        rStr = CString(read);
        delete read;
    }
    file.Close();
}




댓글 없음:

댓글 쓰기