尝试读取 docx 文件时出现 UnicodeDecodeError
UnicodeDecodeError when trying to read docx file
使用 python 3
打开 docx 文件时出现错误
当我尝试 运行:
file=open("jinuj.docx","r",encoding="utf-8").read()
出现以下错误
319 # decode input (taking the buffer into account)
320 data = self.buffer + input
--> 321 (result, consumed) = self._buffer_decode(data, self.errors, final)
322 # keep undecoded input until the next call
323 self.buffer = data[consumed:]
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb6 in position 11: invalid start byte
python-docx
可以从所谓的类似文件 object
打开文档。它还可以保存到类似文件的对象:
from docx import Document
f = open('jinuj.docx', 'rb')
document = Document(f)
f.close()
或
with open('jinuj.docx', 'rb') as f:
source_stream = StringIO(f.read())
document = Document(source_stream)
source_stream.close()
使用 python 3
打开 docx 文件时出现错误当我尝试 运行:
file=open("jinuj.docx","r",encoding="utf-8").read()
出现以下错误
319 # decode input (taking the buffer into account)
320 data = self.buffer + input
--> 321 (result, consumed) = self._buffer_decode(data, self.errors, final)
322 # keep undecoded input until the next call
323 self.buffer = data[consumed:]
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb6 in position 11: invalid start byte
python-docx
可以从所谓的类似文件 object
打开文档。它还可以保存到类似文件的对象:
from docx import Document
f = open('jinuj.docx', 'rb')
document = Document(f)
f.close()
或
with open('jinuj.docx', 'rb') as f:
source_stream = StringIO(f.read())
document = Document(source_stream)
source_stream.close()