Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to select the lower 4 bits of the last byte in a byte array. This is how I have previously done it in PHP but I am new to Java.

$lower4bit = substr($bytes[19], -1);

//Convert the hex to decimal to get the offset value
$offset = hexdec($lower4bit);

//Select the value of the 4 bytes starting at the offset
$joinedArray = implode(array_slice($bytes, $offset, 4));

Can anyone point me in the correct direction with Java?

share|improve this question
I don't have time for a full answer, but keep in mind... in PHP an 'array' is array, list, map, and all kinds of other stuff. In Java, they're not all rolled into one. – corsiKa Nov 15 '11 at 22:04
This is very wrong way to do it even in PHP though. $lower4bit = $bytes[19] & 0x0F; – Esailija Nov 15 '11 at 22:06

1 Answer

up vote 3 down vote accepted

You access an array like so:

y = a[i];

You find the length of an array like so:

len = a.length;

You can isolate the last 4 bits of an integer like so:

y = x & 0xF;

These should be sufficient to construct the code that you need.

share|improve this answer
Thanks. I follow the first two, thats great. I now have the last byte. Not sure how the third bit works though. What does the 0xF do? – Joseph Nov 15 '11 at 22:11
1  
@Joseph: The final statement is applying a bitmask. 0xF is a hexadecimal constant with the 4 lsbs set. – Oli Charlesworth Nov 15 '11 at 22:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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