码迷,mamicode.com
首页 > 编程语言 > 详细

C++ wifstream读取日文方法(中文适用)

时间:2016-05-19 14:41:19      阅读:858      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <fstream>
#include <locale>
#include <codecvt>

int main()
{
    
    const std::locale empty_locale = std::locale::empty();
    typedef std::codecvt_utf8<wchar_t> converter_type;  //std::codecvt_utf16
    const converter_type* converter = new converter_type;
    const std::locale utf8_locale = std::locale(empty_locale, converter);

    std::wifstream fin("Test_GetNextChar.txt");  //input
    fin.imbue(utf8_locale);

    wchar_t ch;
    while (!fin.eof())
    {
        fin >> ch;
        std::cout << ch << std::endl;
    }

    system("pause");
    return 0;
}

方法来自:https://www.zhihu.com/question/29043383

C++ wifstream读取日文方法(中文适用)

标签:

原文地址:http://www.cnblogs.com/elninovt9/p/5508353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!