用法:
//将文件转换为字节组,字节组将为字符串形式返回赋值给“b”
otob("%abc.txt", b)
syso(b)
//将字符串转换为字节组
otob("utf-8", "nihao", b)
syso(b)
//不设置编码
otob(null, "nihao", b)
//将文件转换成 byte[] 字节数组对象
otob("file", null, "%abc.txt", b)
syso(b)
//将字符串转换成 byte[] 字节数组对象
otob("str", "utf-8", "nihao", b)
syso(b)
说明:
将字符或文件转换为字节组