我有一个大数组,上面有我要写入文件的数字。
但如果我这样做:
local out = io.open("file.bin", "wb")
local i = 4324234
out:write(i)
我只是将数字作为字符串写入文件。如何为要归档的数字写入正确的字节。我怎么能在以后阅读它。
答案 0 :(得分:6)
您可以使用lua struct对二进制转换进行更精细的控制。
local struct = require('struct')
out:write(struct.pack('i4',0x123432))
答案 1 :(得分:3)
试试这个
function writebytes(f,x)
local b4=string.char(x%256) x=(x-x%256)/256
local b3=string.char(x%256) x=(x-x%256)/256
local b2=string.char(x%256) x=(x-x%256)/256
local b1=string.char(x%256) x=(x-x%256)/256
f:write(b1,b2,b3,b4)
end
writebytes(out,i)
还有这个
function bytes(x)
local b4=x%256 x=(x-x%256)/256
local b3=x%256 x=(x-x%256)/256
local b2=x%256 x=(x-x%256)/256
local b1=x%256 x=(x-x%256)/256
return string.char(b1,b2,b3,b4)
end
out:write(bytes(0x10203040))
这些工作用于32位整数,并首先输出最高有效字节。根据需要进行调整。