일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- nodeJS
- 빅 데이타
- 몽고디비
- 인공지능
- 빅데이터
- 주일설교
- WebGL
- MongoDB
- Big Data
- 김양재
- 통계
- probability
- Statistics
- Artificial Intelligence
- node.js
- Machine Learning
- 딥러닝
- 김양재 목사님
- 김양재 목사
- 데이터 과학
- 우리들교회
- Deep learning
- data science
- 빅 데이터
- 확률
- R
- No SQL
- openCV
- 빅데이타
- c++
Archives
- Today
- Total
목록CFile (1)
Scientific Computing & Data Science
[C/C++] MFC / CFile의 UTF 문자를 파일에 쓰기
MFC의 CFile 클래스를 이용하여 UTF 문자를 파일에 쓰는 방법은 다음과 같다:CString str = _T("가나다라"); CFile yourFile(_T("test.txt"), CFile::modeWrite | CFile::modeCreate); CT2CA outputString(str, CP_UTF8); yourFile.Write(outputString, ::strlen(outputString));
Programming/C&C++
2014. 9. 23. 16:49