How To Convert Arabic Text From Pyqt4 To Utf-8
Solution 1:
Instead of writing code to convert from your unicode to UTF-8, you wrote code to convert from UTF-8 to unicode. That's what you're getting errors.
decode("utf-8") means
Take a UTF-8 encoded binary
strand convert to aunicodestring.
Conversely, encode("utf-8") means
take a
unicodestring and encode into a binarystrusing UTF-8.
It looks like you're trying to encode text as UTF-8, so you can write it to your file in UTF-8 encoding. So you should use be using encode() instead of decode().
Also, you're taking your QString value, which is in unicode, and calling str() on it. This attempts to change it to a binary str using ASCII, which doesn't work for your Arabic text, and causes the exception you're seeing. And it's not what you wanted to do, anyway—you wanted to use UTF-8, not ASCII. So don't convert it to a binary str, convert it to a unicode object with unicode().
So, for example, instead of
str(self.lineEdit_2.text()).decode("utf-8")
you should write instead
unicode(self.lineEdit_2.text()).encode("utf-8")
Post a Comment for "How To Convert Arabic Text From Pyqt4 To Utf-8"