Unicode文本在Python 2.7中表示为u'xxxx而不是日语

时间:2014-09-11 23:08:57

标签: python python-2.7 unicode encoding

多年来,当我使用日语中的许多文本文件时,我在Python中经历了许多与Unicode的斗争,所以我熟悉使用.encode(" utf-8" )将日文文本从u&x; xxxx中恢复为日文显示。我没有得到任何编码/解码错误。但是我从unicode文件读取文本,操作,然后写回新文件的文本被表示为u' xxxx的字符串而不是原始的日文文本。我已经在多个地方尝试过.encode()和.decode(),并且每次都没有使用它们,每次都有相同的结果。欢迎任何建议。

具体来说,我正在使用Scrapy库编写一个蜘蛛,它从它抓取的文件中获取文本,提取一些文本来构造新文件的文件名,然后将HTML文件的第一个div写为字符串进入那个新文件。

对我来说更令人困惑的是,我用来创建文件名的文本都用日语呈现,文件名本身也是如此。是因为我在div上使用str(),我将你的xxxx作为我文件的内容吗?请在代码末尾看到这一行。

这是我的完整代码(请忽略其中的一些hacky):

def parse_item(self, response):
    original = 0
    author = "noauthor"
    title = "notitle"
    year = "xxxx"
    publisher = "xxxx"
    typer = "xxxx"
    ispub = 0
    filename = response.url.split("/")[-1]
    if "_" in filename:
        filename = filename.split("_")[0]
        if filename.isdigit():
            title = response.xpath("//h1/text()").extract()[0].encode("utf-8")
            author = response.xpath("//h2/text()").extract()[0].encode("utf-8")
            ID = filename
            bibliographic_info = response.xpath("//div[2]/text()").extract()
            for subyear in bibliographic_info:
                ispub = 0
                subyear = subyear.encode("utf-8").strip()
                if "初出:" in subyear:
                    publisher = subyear.split(":")[1]
                    original = 1
                    ispub = 1
                if "入力:" in subyear:
                    typer = subyear.split(":")[1]
                if len(subyear) > 1 and (original == 1) and (ispub == 0):
                    counter = 0
                    while counter < len(subyear):
                        if subyear[counter].isdigit():
                            break
                        counter+=1
                    if counter != len(subyear):
                        year = subyear[counter:(counter+4)]
                    original = 0
    body = str(response.xpath("//div[1]/text()").extract())
    new_filename = author + "_" + title + "_" + publisher + "_" + year + "_" + typer + ".html"
    file = open(new_filename, "a")
    file.write(body.encode("utf-8")  
    file.close()

1 个答案:

答案 0 :(得分:3)

# -*- coding: utf-8 -*-
# u'初出' and u'\u521d\u51fa' are different ways to specify *the same* string
assert u'初出' == u'\u521d\u51fa'
#XXX don't mix Unicode and bytes!!!
assert u'初出' != '初出' and u'初出' != '\u521d\u51fa' 

根本不使用str()将Unicode字符串作为参数,而是使用显式.encode()。 除非必要,否则请勿致电.encode().decode();改为使用Unicode三明治:

  • 将您从外部世界收到的字节解码为Unicode
  • 将Unicode保留在脚本中
  • 在末尾编码成字节以保存到文件,通过网络发送。

第一步和最后一步都可能是隐含的,即您的程序可能只看到Unicode文本。

注意,这些是三个不同的东西:

  • 当您使用字符串文字(unicode转义,源代码编码,原始字符串文字)指定字符串时,字符串在源代码中的样子
  • 字符串的内容
  • 打印时的样子(repr(),'backslashreplace'错误处理程序)

如果您在输出中看到u'...';这意味着在某个时刻repr(unicode_string)被调用。它可能是隐含的,例如,通过print([unicode_string]),因为repr()在列表的项目上被调用,而它被转换为字符串。

print(u'\u521d\u51fa')       # -> 初出 #NOTE: no u'', \u..
print(repr(u'\u521d\u51fa')) # -> u'\u521d\u51fa'