2

如何将 Ceylon 中的字符串编码为 UTF-8 字节?

value string = "my_string";
[Byte*] bytes = string.______;
4

1 回答 1

3

使用ceylon.buffer.charset.

import ceylon.buffer.charset {
    utf8
}

shared void run() {
    value string = "my_string";
    List<Byte> bytes = utf8.encode(string);
    Byte[] bytesSequence = bytes.sequence(); // in case a List isn’t enough
}

试试看!

于 2018-04-01T17:50:21.963 回答