gbk_codec 0.3.0
gbk_codec: ^0.3.0 copied to clipboard
GBK codec converter (enCode and deCode) library includes bytes codec.
The GBK (Chinese Internal Code Specification: China GBK 汉字内码扩展规范编码表) code converter library
Created from GBK standard, generated code converter tables, overwrote converter class of dart. It's a pure dart solution.
Two class for GBK library:
- gbk, standard 16-bits codec library
- gbk_bytes, gbk byte codec library, for bytes stream
Usage #
deCode and enCode using samples, standard 16-bits library and byte library:
import 'package:gbk_codec/gbk_codec.dart';
main() {
String text = 'dart GBK code 兩岸猿聲啼不住, chinese simple:轻舟已过万重山.';
//gbk encode
List<int> gbkCodes = gbk.encode(text);
String hex = '';
gbkCodes.forEach((i) {hex += i.toRadixString(16)+ ' ';});
print(hex);
//gbk decode
String decoded_text = gbk.decode(gbkCodes);
print(decoded_text);
//gbk_bytes encode
List<int> gbk_byteCodes = gbk_bytes.encode(text);
hex = '';
gbk_byteCodes.forEach((i) {hex += i.toRadixString(16)+ ' ';});
print(hex);
//gbk_bytes decode
String decoded_bytes_text = gbk_bytes.decode(gbkCodes);
print(decoded_bytes_text);
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.