标签: ruby sockets hex
我的Ruby脚本中有一个字节流,我想将值输出到控制台。
答案 0 :(得分:15)
如果您使用大块字节读取流,则可以使用String#unpack:
while buffer = io.read str << buffer.unpack('H*') end