i am trying to convert a signed byte in unsigned , the problem is the data I am receiving is Unsigned and Java does not support unsigned byte so when it reads the data it treats it as signed. I tried it to convert it by the following solution i got from SO
public static int unsignedToBytes( byte a )
{
int b =(( a & 0xFF ));
return ((b ));
}
but when again its converted in byte I get the same signed data.I am trying to use this data as a parameter to a function of java that accepts only byte as parameter so cant use any other data-type. please help.