Java Utililty Methods Byte Array to DWord

List of utility methods to do Byte Array to DWord

Description

The list of methods to do Byte Array to DWord are organized into topic(s).

Method

doublebyteToDword(byte btValue[])
byte To Dword
return fixSignedByte(btValue[0]) + (fixSignedByte(btValue[1]) << 8) + (fixSignedByte(btValue[2]) << 16)
        + (fixSignedByte(btValue[3]) << 24);