Convert byte[] into int
Hey!How to convert a byte vector to an int? Byte[] to int?ThanksMikael
[105 byte] By [
ironmajka] at [2007-10-3 10:31:08]

In fact, to save space, you could fit 4 byte objects into 1 int object, get a BitSet from the int, and simply doll it out at 8-bits/byte when reading.Neat huh.