代碼參考了這裏:http://wiki.python.org/moin/P...python
上文對各類系統沒法輸出奇葩編碼的字符作了總結,本文中只針對windows cmd下GBK編碼(cp936)但想執行utf-8編碼的Python文件進行修改。linux
原理就是:windows
Another is to put an intercept between sys.stdout, and the text wrapper.app
更多仍是看參考文章吧,這裏直接貼代碼:編碼
[python] view plain copycode
import sys utf-8
class UnicodeStreamFilter:get
def __init__(self, target): self.target = target self.encoding = 'utf-8' self.errors = 'replace' self.encode_to = self.target.encoding def write(self, s): if type(s) == str: s = s.decode("utf-8") s = s.encode(self.encode_to, self.errors).decode(self.encode_to) self.target.write(s)
if sys.stdout.encoding == 'cp936':cmd
sys.stdout = UnicodeStreamFilter(sys.stdout)
if name == "__main__":it
a = "你好" b = u"你好" print a print b
保存成一個py文件,直接import便可。
這樣就實現了linux下和windows下兼容了~
固然若是不知道原來是什麼編碼,但想轉成utf-8編碼的話,將上面的if條件刪掉便可。