As you see the result is an int not a byte
How it works, say we have a byte b = -128;, this is represented as 1000 0000, so what happens when you execute your line? Let's use a temp int for this, say:
int i1 = (int)b; i1 is now -128 and this is actually represented in binary like this:
1111 1111 1111 1111 1111 1111 1000 0000
So what does i1 & 0xFF look like in binary?
1111 1111 1111 1111 1111 1111 1000 0000
&
0000 0000 0000 0000 0000 0000 1111 1111
which results in
0000 0000 0000 0000 0000 0000 1000 0000
and this is exactly 128, meaning your signed value converted to unsigned.
Edit
Convertint byte -128 .. 127 into 0 .. 255
int unsignedByte = 128 + yourByte;
You cannot represent the values 128 to 255 by using a byte, you must use something else, like an int or a smallint.