The goal is to convert every pair of bytes as a single unsigned 16bit int. In C I would define an array[500] of 16bit unsinged int pointer and would point it the the array of bytes, but in java I am not aware of such short cut. I know in Java there is no 16bit data type except char, however that is not an issue. We only need to copy every two consecutive two bytes into a single int of an array of integers. So the array of integer holds values of int ranging from 0 to 65535 (2^16-1).
|
feedback
|
|
I think that there are no nice tricks in Java like the aliasing you can do in C. You're going to have to do this by hand:
(This can probably be sped up a bit, but probably not worth it for 1,000 elements unless it's being done a lot.) Note that the promotion from | |||||||
feedback
|
|
You could use ByteBuffer to spare the shifting and masking, which you often get wrong. (and there is signed vs. unsigned too)
Note - if you really want an "unsigned short", there is no such thing in java, so your array would have to be of integers. You would convert using
| ||||
|
feedback
|
|
There isn't really an unsigned 16-bit integer type in Java -- except maybe
And if you're really picky about performance, you could add a separate counter or use right shift instead of division, but that's straightforward enough. | |||
|
feedback
|
shortis indeed a 16-bit data type. The problem for OP, I think, is that it is always a signed quantity in Java. There is no such thing as an unsigned short. – Ted Hopp Jan 19 at 19:10