JAVA - Parse a string represneting a signed tinyint (0-255) to a byte?

78 Views Asked by At

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)
0

There are 0 best solutions below