qt utf gbk

复制代码
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
复制代码
    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
复制代码
    QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
复制代码
#endif
复制代码
复制代码
#if (QT_VERSION <= QT_VERSION_CHECK(5,0,0))
复制代码
#if _MSC_VER
复制代码
    QTextCodec *codec = QTextCodec::codecForName("GBK");
复制代码
#else
复制代码
    QTextCodec *codec = QTextCodec::codecForName("UTF-8");
复制代码
#endif
复制代码
    QTextCodec::setCodecForLocale(codec);
复制代码
    QTextCodec::setCodecForCStrings(codec);
复制代码
    QTextCodec::setCodecForTr(codec);
复制代码
#else
复制代码
    QTextCodec *codec = QTextCodec::codecForName("UTF-8");
复制代码
    QTextCodec::setCodecForLocale(codec);
复制代码
#endif
相关推荐
Quz2 小时前
QML 快捷键篇:基础快捷键与组合键序列
qt·qml
≮傷£≯√4 小时前
Qt 面试(一)
qt·ffmpeg·音视频
西西弗Sisyphus7 小时前
Qt 分类导航区的实现
开发语言·qt
galaxy_strive8 小时前
Qt C++插件化编写项目(1)
开发语言·c++·qt
kaixin_learn_qt_ing1 天前
Qt Model/View
qt
Quz1 天前
QML MouseArea:鼠标拖拽与滚轮缩放
qt·qml
CHPCWWHSU1 天前
DeepSeek-Harness-Qt将浏览器端Agent装入桌面应用
开发语言·qt
飘忽不定的bug1 天前
ubuntu20.04交叉编译QT5.15.12(RK3562+ubuntu20.04)
linux·qt·ubuntu
秋田君1 天前
Qt_QMediaPlayer类与QMediaPlaylist类
开发语言·qt
mengzhi啊1 天前
QT程序界面自适应1080/2K/4K屏幕。qputenv或者setAttribute
qt