系统编码是 Windows 上的当前代码页,Linux 和 Mac 上的 UTF-8。
构造函数
- SystemEncoding()
- 创建一个 const SystemEncoding。const
属性
-
decoder → Converter<
List< int> , String> - 返回
this
的解码器,将List<int>
转换为String
。no setteroverride -
encoder → Converter<
String, List< int> > - 返回从
String
到List<int>
的编码器。no setteroverride - hashCode → int
- 此对象的哈希码。no setterinherited
-
inverted → Codec<
List< int> , String> - 反转
this
。no setterinherited - name → String
- 编码的名称。no setteroverride
- runtimeType → Type
- 对象的运行时类型表示。no setterinherited
方法
-
decode(
List< int> encoded) → String - 解码
encoded
数据。override -
decodeStream(
Stream< List< byteStream) → Future<int> >String> -
继承
-
encode(
String input) → List< int> - 对
input
进行编码。override -
fuse<
R> (Codec< List< other) → Codec<int> , R>String, R> - 将
this
与other
合并。继承 -
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。继承
-
toString(
) → String - 该对象的字符串表示。继承
运算符
-
operator ==(
Object other) → bool - 等于运算符。继承