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

alright, so my code to read bytes into a int is like so:

int offset = (byte << 16) | (byte2  << 8) | byte3;

And it's reading the bytes "00 00 be" as -66.

How do I read it as the 190 it's meant to be?

share|improve this question

2 Answers

up vote 4 down vote accepted
byte b = -66;
int i = b & 0xff;
share|improve this answer
that worked. I'll be accepting this answer as soon as I can ^_^ thank you. – William Oct 23 '10 at 0:12
an explanation perhaps: this works because the 0xff literal is an int, not a byte. Otherwise the bitwise AND with 0xff would yield the same byte again. – Wim Coenen Oct 23 '10 at 0:44
yup. The same thing works for dealing w/ shorts, just do an & 0xffff. – Jason S Oct 23 '10 at 2:17
    byte b = -66;
    int i = b < 0 ? b + 256 : b;

It might be useful declare helper function for this.

share|improve this answer

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.