I have some data in int variables in Java (range between 0 and 64000). How to convert to byte this integer? I need just two lower bytes from int (range is ok). How to extract this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You can get the lowest byte from the integer by ANDing with
This works because To get the second-lowest-byte, you can repeat this trick after shifting down all the bits in the number 8 spots:
|
|||||
|