当前位置:
首页 > Python基础教程 >
-
Python3标准库:codecs字符串编码和解码(3)
def to_hex(t, nbytes):
"""Format text t as a sequence of nbyte long values
separated by spaces.
"""
chars_per_item = nbytes * 2
hex_version = binascii.hexlify(t)
return b' '.join(
hex_version[start:start + chars_per_item]
for start in range(0, len(hex_version), chars_per_item)
)
# Pick the nonnative version of UTF-16 encoding
if codecs.BOM_UTF16 == codecs.BOM_UTF16_BE:
bom = codecs.BOM_UTF16_LE
encoding = 'utf_16_le'
else:
bom = codecs.BOM_UTF16_BE
encoding = 'utf_16_be'
print('Native order :', to_hex(codecs.BOM_UTF16, 2))
print('Selected order:', to_hex(bom, 2))
# Encode the text.
encoded_text = 'français'.encode(encoding)
print('{:14}: {}'.format(encoding, to_hex(encoded_text, 2)))
with open('nonnative-encoded.txt', mode='wb') as f:
# Write the selected byte-order marker. It is not included
# in the encoded text because the byte order was given
# explicitly when selecting the encoding.
f.write(bom)
# Write the byte string for the encoded text.
f.write(encoded_text)
首先得出原生字节序,然后显式的使用替代形式,以便下一个例子可以在展示读取时自动检测字节序。
程序打开文件时没有指定字节序,所以解码器会使用文件前两个字节中的BOM值来确定字节序。
- import codecs
- import binascii
- def to_hex(t, nbytes):
- """Format text t as a sequence of nbyte long values
- separated by spaces.
- """
- chars_per_item = nbytes * 2
- hex_version = binascii.hexlify(t)
- return b' '.join(
- hex_version[start:start + chars_per_item]
- for start in range(0, len(hex_version), chars_per_item)
- )
- # Look at the raw data
- with open('nonnative-encoded.txt', mode='rb') as f:
- raw_bytes = f.read()
- print('Raw :', to_hex(raw_bytes, 2))
- # Re-open the file and let codecs detect the BOM
- with codecs.open('nonnative-encoded.txt',
- mode='r',
- encoding='utf-16',
- ) as f:
- decoded_text = f.read()
- print('Decoded:', repr(decoded_text))
由于文件的前两个字节用于字节序检测,所以它们并不包含在read()返回的数据中。
1.4 错误处理
前几节指出,读写Unicode文件时需要知道所使用的编码。正确的设置编码很重要,这有两个原因:首先,如果读文件时未能正确的配置编码,就无法正确的解释数据,数据有可能被破坏或无法解码,就会产生一个错误,可能丢失数据。
类似于str的encode()方法和bytes的decode()方法,codecs也使用了同样的5个错误处理选项。
错误模式 | 描述 |
---|---|
strict |
如果无法转换数据,则会引发异常。 |
replace |
将特殊的标记字符替换为无法编码的数据。 |
ignore |
跳过数据。 |
xmlcharrefreplace |
XML字符(仅编码) |
backslashreplace |
转义序列(仅编码) |
1.4.1 编码错误
最常见的错误是在向一个ASCII输出流(如一个常规文件或sys.stdout)写Unicode数据时接收到一个UnicodeEncodeError。
- import codecs
- error_handlings = ['strict','replace','ignore','xmlcharrefreplace','backslashreplace']
- text = 'français'
- for error_handling in error_handlings:
- try:
- # Save the data, encoded as ASCII, using the error
- # handling mode specified on the command line.
- with codecs.open('encode_error.txt', 'w',
- encoding='ascii',
- errors=error_handling)
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式