Qt中用fopen 打开带中文路径的文件失败的解决方法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
Qt
中用fopen
打开带中文路径的文件时,总是失败。
perror()
出错提示为:no such file or directory
用QFile
不存在不此问题。
解决方法:
fopen
是C
标准库的一个函数,函数内部是系统调用。Windows
中调用CreateFile
;Linux
中调用open
。
Linux
的系统编码为UTF-8
,程序中统一UTF-8
编码就可以正常打开文件,中文乱码问题也能解决。
Windows
的系统编码为GBK
,如果文件名称是Unicode
编码,那么在调用fopen
前就必须要先把文件名称编码转为GBK
,否则就打开失败。
Qt
中默认的编码为UTF-8
,故在windows
下需要先转码才能打正确打开。
修改如下:
添加头文件 include<QTextCodec>
QTextCodec *code = QTextCodec::codecForName("GB2312");
std::string name = code->fromUnicode(getMapFilePath).data();
FILE *fp = fopen(name.c_str(),"rb");
if (!fp) {
perror("open failure");
}
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)