qtopia显示中文方法

qtopia显示中文试试下面的代码:
int main(int argc, char ** argv)
{
    QApplication app( argc, argv );
    app.setFont(QFont("wenquanyi", 15));
    QTextCodec *codec = QTextCodec::codecForName("utf8");
    QLabel label;
    label.setText(codec->toUnicode("退出", strlen("退出")));;
    label.show();
    app.connect( &app, SIGNAL( lastWindowClosed() ), &app, SLOT( quit() ) );
    return app.exec();
}

你可能感兴趣的:(qtopia显示中文方法)