1. 程式人生 > >eclipse python中文亂碼

eclipse python中文亂碼

首先要確保eclipse編輯器環境的編碼為utf8,這個是大前提;其次如果py檔案中含有中文字元的話,需要在py檔案

中對編碼進行宣告。
1. 修改eclipse編輯器編碼

a) window->preferences->general->editors->text editors->spelling->encoding->UTF-8
b) window->preferences->workspace->text file encoding->UTF-8

c) 開啟eclipse安裝目錄->eclipse.ini,末行加上”-Dfile.encoding=UTF-8”

2. 修改python檔案編碼宣告
在py檔案首行加上#coding=utf-8,一定要在首行才可以

http://www.android100.org/html/201407/13/39627.html