Link : http://kldp.org/node/26526
// korText.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
wstring aa = L"abcde 입니다.";
wfstream filestr;
filestr.imbue(locale( "korean" ) ); // 이게 중요
filestr.open (L"C:\test.txt", wfstream::in | wfstream::out | wfstream::app);
filestr.write(aa.c_str(), static_cast<streamsize>(aa.length()));
filestr.close();
return 0;
}
반응형
'프로그래밍(Programming) > c++, 11, 14 , 17, 20' 카테고리의 다른 글
C++ 네임스페이스의 간소화 (0) | 2012.11.08 |
---|---|
new, delete 연산자 오버로딩 (0) | 2012.11.04 |
년도 날짜 시간 초 얻기 time.h -> _time64, _localtime64 (0) | 2012.11.03 |
날짜 및 시간 설정, 타이머 사용방법 (C++) (0) | 2012.11.03 |
함수 스택 오버플로우, 함수 호출시 메모리에 적재 되는 것들 (0) | 2012.11.01 |