读取big5文件并以utf8格式打印到stdout
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取big5文件并以utf8格式打印到stdout相关的知识,希望对你有一定的参考价值。
import sys from codecs import EncodedFile ## EncodedFile "wraps" stdout so that it always takes a "from_encoding" string and ## convert it to a "to_encoding" string from_encoding = 'big5' to_encoding = 'utf8' sys.stdout = EncodedFile(sys.stdout, from_encoding, to_encoding) ## read a file in big5 encoding str = f.read() ## print the content of the file in utf8 sys.stdout.write(str) # you can also use "print str"
以上是关于读取big5文件并以utf8格式打印到stdout的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 一个示例C代码,用于从STDIN读取整数并将其打印到STDOUT。
如何判断一个文件的编码格式,UNICODE,BIG5,毕业设计