QString 与python string 对象转换

PyQt返回的字符串是 QString,如果内容是中文,则直接使用会有问题,要转换成 python string


需要使用unicode(QtCore.QString('中文').toUtf8(), 'utf-8', 'ignore')  转换一下


refer : http://www.flatws.cn/article/program/python/2011-05-25/27500.html

你可能感兴趣的:(QString 与python string 对象转换)