2010年12月31日 星期五

讀取utf8檔案

程式碼


import codecs

fileObj = codecs.open( "dd.txt", "r", "utf-8" )
u = fileObj.read() # Returns a Unicode string from the UTF-8 bytes in the file
print type(u)
#print u.encode("unicode")

沒有留言: