I understand that java uses two's complement to represent a byte type. However is there an easy way to parse a string representing numbers in range of 0-255 into a byte?
E.g. I expect the following code to be able to parse values (218,230,etc.)
Byte.valueOf((String) value)