// WriteFile( hParsedData, tempStr.GetBuffer( tempStr.GetLength() ), tempStr.GetLength(), &dwWrite, NULL );
WriteFile( hParsedData, tempStr.c_str(), tempStr.size(), &dwWrite, NULL );
CString tempStr2;
tempStr2 = tempStr.c_str();
pTool->m_lbLogView.AddString( tempStr2 );
//tempStr = pPacket->NMEA.Left( 6 ); // ?????
tempStr = pPacket->NMEA.substr( 0, 6 );
// pPacket->NMEA = tempBuffer;
pPacket->NMEA.clear();
pPacket->NMEA.replace( 0, sizeof( tempBuffer )-1, (char*) tempBuffer );
//wcstombs( (char*) tempBuffer, tempStr, tempStr.GetLength() );
sprintf( tempBuffer, "%s", tempStr.c_str() );
//CString NMEA;
std::string NMEA;
주석 처리된 (//) 부분이 CString으로 만든 문자열을 처리하기 위한 코드
그 밑에가 string으로 바꾼뒤 사용한 코드
'프로그래밍 > 폰트_문자열_인코딩' 카테고리의 다른 글
헷갈리는 한글판단 in utf-8, unicode, euc-kr (0) | 2014.01.21 |
---|---|
조합형 폰트 출력 (0) | 2011.04.14 |
유니코드 처리 (0) | 2011.04.13 |
unicode, encoding, utf-8, euck-kr, charmap, charset (0) | 2011.04.13 |
유니코드의 정의와 ANSI 구별 (0) | 2008.02.06 |