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 tr
If think you are looking for something like this.
public static char toUnsigned(byte b) { return (char) (b >= 0 ? b : 256 + b); }