Python:如何从Windows 1251转换为Unicode?

时间:2011-04-27 15:55:03

标签: python unicode encoding

我正在尝试使用Python将文件内容从Windows-1251(西里尔文)转换为Unicode。我找到了这个功能,但它不起作用。

#!/usr/bin/env python

import os
import sys
import shutil

def convert_to_utf8(filename):
# gather the encodings you think that the file may be
# encoded inside a tuple
encodings = ('windows-1253', 'iso-8859-7', 'macgreek')

# try to open the file and exit if some IOError occurs
try:
    f = open(filename, 'r').read()
except Exception:
    sys.exit(1)

# now start iterating in our encodings tuple and try to
# decode the file
for enc in encodings:
    try:
        # try to decode the file with the first encoding
        # from the tuple.
        # if it succeeds then it will reach break, so we
        # will be out of the loop (something we want on
        # success).
        # the data variable will hold our decoded text
        data = f.decode(enc)
        break
    except Exception:
        # if the first encoding fail, then with the continue
        # keyword will start again with the second encoding
        # from the tuple an so on.... until it succeeds.
        # if for some reason it reaches the last encoding of
        # our tuple without success, then exit the program.
        if enc == encodings[-1]:
            sys.exit(1)
        continue

# now get the absolute path of our filename and append .bak
# to the end of it (for our backup file)
fpath = os.path.abspath(filename)
newfilename = fpath + '.bak'
# and make our backup file with shutil
shutil.copy(filename, newfilename)

# and at last convert it to utf-8
f = open(filename, 'w')
try:
    f.write(data.encode('utf-8'))
except Exception, e:
    print e
finally:
    f.close()

我该怎么做?

谢谢

3 个答案:

答案 0 :(得分:16)

import codecs

f = codecs.open(filename, 'r', 'cp1251')
u = f.read()   # now the contents have been transformed to a Unicode string
out = codecs.open(output, 'w', 'utf-8')
out.write(u)   # and now the contents have been output as UTF-8

这是你打算做的吗?

答案 1 :(得分:0)

如果您使用codecs模块打开文件,那么当您从文件中读取时,它将为您转换为Unicode。 E.g:

import codecs
f = codecs.open('input.txt', encoding='cp1251')
assert isinstance(f.read(), unicode)

这只有在Python中处理文件数据时才有意义。如果您尝试在文件系统上将文件从一种编码转换为另一种编码(这是您发布的脚本尝试执行的操作),则必须指定实际编码,因为您无法在“ Unicode的”。

答案 2 :(得分:0)

这只是一个猜测,因为你没有指定你的意思“不工作”。

如果文件正确生成但似乎包含垃圾字符,则您正在查看的应用程序可能无法识别它包含UTF-8。您需要将BOM添加到文件的开头 - 3个字节0xEF,0xBB,0xBF(未编码)。