前端之家收集整理的这篇文章主要介绍了
sqlite3问题2:中文路径的支持,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在工程中加
sqlite3源
代码,
调用第一个
函数sqlite3_open,发现其
不支持中文路径。 经过检索发现该
函数要求输入的
文件名为utf8编码。 //再
sqlite3.c中 winFullPathname、
sqlite3_win32_mbcs_to_utf8、mbcsToUnicode、unicodeToUtf8与此事相关。 //参考以上4个
函数,做的一个编码转换
函数 CString CMyApp::MbcsToUtf8(const char *file) { CString str; WCHAR *pwchar=0; CHAR *pchar=0; int len=0; int codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; len=MultiByteToWideChar(codepage,file,-1,NULL,0); pwchar=new WCHAR[len]; if(pwchar!=0) { len = MultiByteToWideChar(codepage,pwchar,len); if( len!=0 ) { len = WideCharToMultiByte(CP_UTF8,0); pchar=new CHAR[len]; if(pchar!=0) { len = WideCharToMultiByte(CP_UTF8,pchar,len,0); if(len!=0) { str=pchar; } delete pchar; } delete pwchar; } } return str; }
原文链接:https://www.f2er.com/sqlite/202250.html