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

c++如何通过utf8字符串编码的文件名,在windows上打开一个文件

时间:2020-02-22 11:56:44      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:open   基于   utf8   接受   构造函数   else   pen   window   文件   

办不到!!!

windows只接受8bit的ANSI或者UTF16编码的文件名,你可以在代码里面使用utf8编码的文件名,但是当你打开文件时,你必须将其转化为8bit的ANSI或者UTF16编码的文件名。
幸运的是,VC++的std::ifstream 跟 std::ofstream对标准做了扩展,他们的构造函数跟open()方法可以接受wchat_t*的字符串(utf16编码的)。

下面提供一种基于VC++的扩展的兼容windows的方案:

#ifdef _MSC_VER
std::wstring ToUtf16(std::string str)
{
    std::wstring ret;
    int len = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), NULL, 0);
    if (len > 0)
    {
        ret.resize(len);
        MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), &ret[0], len);
    }
    return ret;
}
#endif

int main()
{
    std::string utf8path = ...;
    std::ifstream iFileStream(
        #ifdef _MSC_VER
        ToUtf16(utf8path).c_str()
        #else
        utf8path.c_str()
        #endif
        , std::ifstream::in | std::ifstream::binary);
    ...
    return 0;
}

c++如何通过utf8字符串编码的文件名,在windows上打开一个文件

标签:open   基于   utf8   接受   构造函数   else   pen   window   文件   

原文地址:https://www.cnblogs.com/ConfuciusPei/p/12344640.html

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