尝试读取docx文件时出现UnicodeDecodeError

时间:2019-03-18 08:29:41

标签: python python-3.x utf-8 python-unicode

使用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

1 个答案:

答案 0 :(得分:0)

python-docx可以从类似文件的object中打开文档。它还可以保存到类似文件的对象中:

from docx import Document
f = open('jinuj.docx', 'rb')
document = Document(f)
f.close()

OR

with open('jinuj.docx', 'rb') as f:
    source_stream = StringIO(f.read())
document = Document(source_stream)
source_stream.close()

Docs