最近作一個socket server,須要接收組播報文,並進行分析處理。其中涉及的一個問題是,待發送的報文是字符串形式,相似「hello world」。git
從wireshark截取的報文看,都是16進制數據,覺得必須轉爲該種類型才能發送,須要轉換爲16進制字符串,相似「0x\a00x\c30x\b4」等。socket
但後來發現,直接發送數據也是ok的,應該是數據發送時本身會進行轉碼。ide
不瞭解的時候,網上查了下,發現你們推薦用到的模塊是binascii,查看help函數
幾個方法以下:編碼
FUNCTIONS翻譯
a2b_base64(...)code
(ascii) -> bin. Decode a line of base64 dataserver
ASCII到BIN數據,解碼一段base64的數據--先無論,不是我所須要的
ci
a2b_hex(...)字符串
a2b_hex(hexstr) -> s; Binary data of hexadecimal representation.
二進制數據的十六進制表示--須要,由於最後數據要以16進制字符串形式
hexstr must contain an even number of hex digits (upper or lower case).
This function is also available as "unhexlify()"
參數hexstr必須是偶數個16進制字碼--必須的,兩個16進制字碼組成一個ASCII碼字
a2b_hqx(...)
ascii -> bin, done. Decode .hqx coding
先無論
a2b_qp(...)
Decode a string of qp-encoded data
先無論
a2b_uu(...)
(ascii) -> bin. Decode a line of uuencoded data
先無論
b2a_base64(...)
(bin) -> ascii. Base64-code line of data
b2a_hex(...)
b2a_hex(data) -> s; Hexadecimal representation of binary data.
看這個翻譯:二進制數據的16進製表示,貌似與上面那個同樣。
先試試看:
>>>t = binascii.b2a_hex('hello world')
'68656c6c6f20776f726c64'
>>> binascii.a2b_hex(t)
'hello world'
>>> binascii.a2b_hex("e4bda0e5a5bde59564")
'\xe4\xbd\xa0\xe5\xa5\xbd\xe5\x95d'
第一個函數是把字符串編碼爲16進制字符串
第二個函數是把16進制字符串加了16進製表示符