The byte keyword is used to declare a primitive Java data type containing an integer value in the range of negative 128 to positive 127. A byte is defined as 8 bits in length, regardless of the platform the Java bytecode executes on.
Note that byte variables can be cast to and from other numeric types.
The following example demonstrates declaration and assignment for a byte variable:
private byte stripThis;
stripThis = 64;