Python byte decode to string
Less than 1 minute
Python byte decode to string
Decode failed issue
有的字元不是utf8
resolurion
忽略錯誤亂碼
f.read().decode('utf-8','ignore')
Other language
//忽略
utf8.decoder(wordBytes,allowMalformed:true);
//直接用String
String word = String.fromCharCodes(wordBytes);