1. ホーム
  2. パイソン

[解決済み] UnicodeDecodeError: 'utf8' コーデックは位置 0 のバイト 0xa5 をデコードできない: 不正なスタートバイトだ

2022-03-31 19:46:21

質問

を使っています。 Python-2.6 CGI スクリプトを実行したところ、サーバーログにこのエラーが表示されました。 json.dumps() ,

Traceback (most recent call last):
  File "/etc/mongodb/server/cgi-bin/getstats.py", line 135, in <module>
    print json.dumps(​​__get​data())
  File "/usr/lib/python2.7/json/__init__.py", line 231, in dumps
    return _default_encoder.encode(obj)
  File "/usr/lib/python2.7/json/encoder.py", line 201, in encode
    chunks = self.iterencode(o, _one_shot=True)
  File "/usr/lib/python2.7/json/encoder.py", line 264, in iterencode
    return _iterencode(o, 0)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xa5 in position 0: invalid start byte

ここで ,

​__get​data() 関数が返す dictionary {} .

この質問を投稿する前に、私は以下を参照しました。 これ の質問osSO。


更新情報

以下の行は、JSONエンコーダを傷つけています。

now = datetime.datetime.now()
now = datetime.datetime.strftime(now, '%Y-%m-%dT%H:%M:%S.%fZ')
print json.dumps({'current_time': now}) # this is the culprit

一時的に修正した

print json.dumps( {'old_time': now.encode('ISO-8859-1').strip() })

しかし、この方法が正しいかどうかはわかりません。

どのように解決するのですか?

このエラーは、辞書に非アスキー文字が含まれていて、それがエンコード/デコードできないためです。このエラーを回避する簡単な方法の一つは、そのような文字列を encode() 関数は、以下のようになります(if a は非アスキー文字を含む文字列である)。

a.encode('utf-8').strip()