1
我哈瓦二進制文件是這樣的:如何用java讀取二進制文件中的dword?
offset | size/type | Description
-------+-----------+-----------------------------------------------------------
0x0000 | 28 chars | zero terminated string
0x001c | 1 dword | fileoffset of first compressed data block (header size)
0x0020 | 1 dword | overall size of compressed file
我可以讀取28個字符的字符串。但我不知道如何讀取一個雙字並將其存儲爲int。
謝謝你的幫助。使用ByteOrder.LITTLE_ENDIAN解決了我的問題。 – user1461256