I'm currently reading a file and wanted to be able to convert the array of bytes obtained from the file into a short array.
How would I go about doing this?
|
|
One possibility is using
Another is to use
|
|||||||
|
|
use create the short array at half size of byte array, then copy byte data in, the fastest method by far:
|
||||
|
|
|
Hey, a short is compound of two bytes, if he's writting to the file all the shorts as true shorts, those conversions are wrong.. you must use two bytes to get the true short value, using something like
|
|||
|
|||||||
|