如何使用Python阅读和理解.hcc文件?

时间:2019-04-02 08:40:13

标签: python file

我有一个.hcc文件,我正在尝试读取该文件,但出现错误。 这是我尝试过的:

chardetect 2016.hcc
2016.hcc: windows-1253 with confidence 0.2724130248827703

我尝试了以下方法:

>>> with open("2016.hcc","r",encoding="windows-1253") as f:
...     print(f.read())
...
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
  File "C:\Python35\lib\encodings\cp1253.py", line 23, in decode
    return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9c in position 232: character maps to <undefined>

然后我尝试不使用编码进行此操作:

>>> with open("2016.hcc","r") as f:
...     print(f.read())
...
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
  File "C:\Python35\lib\encodings\cp1252.py", line 23, in decode
    return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 284: character maps to <undefined>

在字节模式下打开文件后,我能够读取,但是无法理解。

以下是示例文件:2016.hcc

请让我知道我该怎么做。

**更新尝试:**

>>> with open("2016.hcc","r",encoding="utf-16") as f:
...     print(f.read())
...
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
  File "C:\Python35\lib\codecs.py", line 321, in decode
    (result, consumed) = self._buffer_decode(data, self.errors, final)
  File "C:\Python35\lib\encodings\utf_16.py", line 61, in _buffer_decode
    codecs.utf_16_ex_decode(input, errors, 0, final)
UnicodeDecodeError: 'utf-16-le' codec can't decode bytes in position 15390-15391: illegal encoding

0 个答案:

没有答案