erlang:iolist_to_binary/1
把一个 iolist 转为一个二进制数据
用法:
iolist_to_binary(IoListOrBinary) -> binary()
把一个列表转换为一个二进制数据,列表是由数字或者是包含二进制数据的列表 IoList 组成。
Bin1 = <<1, 2, 3>>, Bin2 = <<4, 5>>, Bin3 = <<6>>, iolist_to_binary([Bin1, 1, [2, 3, Bin2], 4 | Bin3]).
iolist_to_binary("this is a iolist").
iolist_to_binary([]).