當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Dart Utf8Decoder用法及代碼示例


dart:convert 庫中Utf8Decoder 類的用法介紹如下。

此類將 UTF-8 代碼單元(無符號 8 位整數列表)轉換為字符串。

例子:

final utf8Decoder = utf8.decoder;
const encodedBytes = [
  195, 142, 195, 177, 197, 163, 195, 169, 114, 195, 177, 195, 165, 197,
  163, 195, 174, 195, 182, 195, 177, 195, 165, 196, 188, 195, 174, 197,
  190, 195, 165, 197, 163, 195, 174, 225, 187, 157, 195, 177];

final decodedBytes = utf8Decoder.convert(encodedBytes);
print(decodedBytes); // Îñţérñåţîöñåļîžåţîờñ

如果編碼的輸入包含無效的 UTF-8 字節序列並且 allowMalformedfalse(默認值),則拋出 FormatException

如果 allowMalformedtrue ,則無效字節序列將轉換為一個或多個 Unicode 替換字符,U+FFFD ('�')。

allowMalformed 設置為 true 的示例:

const utf8Decoder = Utf8Decoder(allowMalformed: true);
const encodedBytes = [0xFF];
final decodedBytes = utf8Decoder.convert(encodedBytes);
print(decodedBytes); // �

繼承

Object StreamTransformerBase<List<int>, String> Converter<List<int>, String> Utf8Decoder

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 Utf8Decoder class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。