I want to create one byte array which should be able to handled the unsigned values. I have gone through this link on stack overflow. Can we make unsigned byte in Java.. It is mentioned in the answer that Java does not allow to express 244 as a byte value, as would C I want to have my byte array like this that byte [0] should have a value 239 and byte[1] should have a values as 245.
As per the documentation it is mentioned that we can only save value in a range-128 to 128 in byte.. how should i solve this problem?