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).

link|improve this question

72% accept rate
6  
And the goal is for you to work on your accept rate. – talnicolas Jan 19 at 19:04
You can use short[] in Java. – anubhava Jan 19 at 19:04
1  
@anubhava - short is 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
feedback

3 Answers

up vote 2 down vote accepted

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:

public int[] pack(byte[] bytes) {
    int n = bytes.length >> 1;
    int[] packed = new int[n];
    for (int i = 0; i < n; ++i) {
        int i2 = i << 1;
        int b1 = bytes[i2] & 0xff;
        int b2 = bytes[i2 + 1] & 0xff;
        packed[i] = (b1 << 8) | b2;
    }
    return packed;
}

(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 byte to int requires a bit of extra work to deal with unwanted sign extension.

link|improve this answer
Thanks, thats right however the promotion from byte to int when we are converting each two bytes to a 32bit signed bit no need to worry about the unwanted sign extension as the max value would be 56635 to be converted to int32. – C graphics Jan 19 at 20:10
@Cgraphics Wrong. The problem is when the top bit of the byte is set, the value is negative. Promotion to int is done by extending the sign bit to the left, so the int value will end up negative as well. At some point one must do some masking. Thus, for instance, ((byte)0x80) << 8 is not 0x00008000; it is 0xffff8000. – Ted Hopp Jan 19 at 20:26
Thanks for the clarification – C graphics Jan 19 at 21:21
feedback

You could use ByteBuffer to spare the shifting and masking, which you often get wrong. (and there is signed vs. unsigned too)

ByteBuffer bb = ByteBuffer.wrap(bytes);
bb.order(ByteOrder.BIG_ENDIAN);  // or LITTLE_ENDIAN
short[] shorts = new short[bytes.length/2];
for (int i=0; i<shorts.length; i++)
   shorts[i] = bb.getShort();

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

for (int i=0; i<intArray.length; i++) {
   short s = bb.getShort();
   intArray[i] = s & 0xFFFF; // mask off all the high order bits
}
link|improve this answer
feedback

There isn't really an unsigned 16-bit integer type in Java -- except maybe char, if you're feeling abusive of the language. That said, this is a wonderful time to use the popular Guava utility library:

public short[] pack(byte[] bytes) {
   short[] result = new short[bytes.length / 2];
   for (int i = 0; i < bytes.length; i += 2) {
     result[i/2] = Shorts.fromBytes(bytes[i], bytes[i+1]);
   }
}

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.