otob 转换为字节组
2022-12-22 14:26:23 最后更新
用法:
--将文件转换为字节组,字节组将为字符串形式返回赋值给“b”
local b = i:otob("%abc.txt")
syso(b)

--将字符串转换为字节组
local b = i:otob("utf-8", "nihao")
syso(b)

--不设置编码
local b = i:otob(nil, "nihao")

--将文件转换成 byte[] 字节数组对象
local b = i:otob("file", nil, "%abc.txt")
syso(b)

--将字符串转换成 byte[] 字节数组对象
local b = i:otob("str", "utf-8", "nihao")
syso(b)

说明:
将字符或文件转换为字节组