python包4字节整数,在bytearray struct.pack中有字节

时间:2011-05-20 18:41:34

标签: python struct ascii bytearray

我正在尝试使用struct.pack将python bytearray的内容打包成4byte有符号整数。不幸的是,pack想要一个字符串,所以在一些谷歌搜索之后,我想我需要将我的bytearray解码为一个字符串。我认为ascii意味着因为ascii字符是一个字节长。不幸的是,ascii不想支持我的价值观> 127,所以我想我会用替换......

但是当我这样做时,decode会返回一个unicode类型的对象,现在我的每个字节都是一个4个字符的字符串......

这看起来有点荒谬,我遗漏了一些明显的东西(ps我已经使用python大约两周了)

这是我想要做的......

    val = long(-5) 
s = bytearray(pack("<i", val)) 

s.pop() # pop off msb

# write it out the way we want to then read it in the way the code does
fout = open("test.bat", "wb")
fout.write(s) 
fout.close()

fin = open("test.bat", "rb") 

inBytes = bytearray(fin.read(3))
# extend sign bit
if (inBytes[2] & 0x80):
    inBytes.append(0xff)
else:
    inBytes.append(0x00)

nb = inBytes.decode('ascii', 'replace')
# ERROR:root:after decode, len: 4 type: <type 'unicode'>
logging.error("after decode, len: {0} type: {1}".format(len(nb), type(nb)))

# struct.error: unpack requires a string argument of length 4 
inInt32 = unpack('<i', inBytes.decode('ascii', 'replace'))[0]

fin.close()

2 个答案:

答案 0 :(得分:1)

您只需将inBytes投回str

>>> inint = struct.unpack('<i', str(inBytes))
>>> inint
(-5,)

答案 1 :(得分:1)

当您以二进制模式从文件中读取时,会得到一个可以立即与struct.unpack一起使用的对象。

创建输入数据:

>>> import struct
>>> f = open('foo.bin', 'wb')
>>> f.write(struct.pack('<i', -5)[:3])
3
>>> f.close()

Python 2.x ..它是str对象。

>>> f = open('foo.bin', 'rb')
>>> raw = f.read()
>>> f.close()
>>> print "received", type(raw), repr(raw)
received <type 'str'> '\xfb\xff\xff'
>>> if raw[2] >= '\x80':
...     raw += '\xff'
... else:
...     raw += '\x00'
...
>>> print "extended", type(raw), repr(raw)
extended <type 'str'> '\xfb\xff\xff\xff'
>>> number = struct.unpack('<i', raw)[0]
>>> print "number", number
number -5
>>>

Python 3.x ...这是一个bytes对象。

>>> f = open('foo.bin', 'rb')
>>> raw = f.read()
>>> f.close()
>>> print("received", type(raw), repr(raw))
received <class 'bytes'> b'\xfb\xff\xff'
>>> if raw[2] & 0x80:
...     raw += b'\xff'
... else:
...     raw += b'\x00'
...
>>> print("extended", type(raw), repr(raw))
extended <class 'bytes'> b'\xfb\xff\xff\xff'
>>> number = struct.unpack('<i', raw)[0]
>>> print("number", number)
number -5
>>>