Qt程序的文字编码,是通过插件来解决的,所以我们发布的时候需要把相应的插件也发布出去,在开发者电脑上程序会自动从插件目录加载到插件,但是如果发布给别的电脑使用,需要手动指定插件路径,如下所示:
int main(int argc, char *argv[]) { QApplication a(argc, argv); QString strLibPath = a.applicationDirPath(); strLibPath += "/plugins"; //plugins就是插件目录 a.addLibraryPath(strLibPath); //此代码必须在QTextCodec的代码前执行 QTextCodec *pcodec = QTextCodec::codecForName("gb2312"); QTextCodec::setCodecForCStrings(pcodec); QTextCodec::setCodecForLocale(pcodec); QTextCodec::setCodecForTr(pcodec); CWinMain w; w.show(); return a.exec(); }
备注:这个plugins目录就是Qt SDK(注意不是QtCreator的)的plugins目录,对于文字编码的子目录是codecs,如果用到其它插件也相应复制其它插件目录发布.
时间: 2024-10-03 12:27:05