共有モード_fsopenファイルを開くのに失敗した解決策(実装_fsopenが中国語をサポートする方法)


ファイルオープン関数は次のとおりです.
void KeyManager::openKeyFile()
{
QDateTime dateTime = QDateTime::currentDateTime();
keyPath = QString(configure.keyPath.c_str()) + "/" + dateTime.toString("yyyyMMddhhmmss") + ".key";

qDebug() << "keyFilePath"<(keyPath.utf16())), s2ws("wb+").c_str(), _SH_DENYNO);//       
#else
keyFile = fopen(fileName.toStdString().c_str(), "wb+");
#endif
qDebug()<

分析は以下の通りである:1.使用_fsopen()の場合、中国語のファイルパスの下で、keyFilePath"C:/Users/Administrator/desktop/鍵/2019121114504.3 key"keyFile 1 0 x 0 keyFile 2 0 x
2.使用_wfsopen()の場合、中国語のファイルパスの下で、keyFilePath"C:/Users/Administrator/desktop/鍵/20191211160938.key"keyFile 1 0 x 0 keyFile 2 0 x 473 b 398
3.関数で使用するタイプ変換は以下の通りです:QString回転wchar_t*の方法
const wchar_t* wstr = reinterpret_cast(filename.utf16());

wstringからstringに変換:
std::string ws2s(const std::wstring& ws)
{
std::string curLocale = setlocale(LC_ALL, NULL); // curLocale = "C";
setlocale(LC_ALL, "chs");
const wchar_t* _Source = ws.c_str();
size_t _Dsize = 2 * ws.size() + 1;
char *_Dest = new char[_Dsize];
memset(_Dest,0,_Dsize);
wcstombs(_Dest,_Source,_Dsize);
std::string result = _Dest;
delete []_Dest;
setlocale(LC_ALL, curLocale.c_str());
return result;
}

stringをwstringに変換するには:
std::wstring s2ws(const std::string& s)
{
setlocale(LC_ALL, "chs");
const char* _Source = s.c_str();
size_t _Dsize = s.size() + 1;
wchar_t *_Dest = new wchar_t[_Dsize];
wmemset(_Dest, 0, _Dsize);
mbstowcs(_Dest,_Source,_Dsize);
std::wstring result = _Dest;
delete []_Dest;
setlocale(LC_ALL, "C");
return result;
}