As the error message says, the syntax 0b...does not yet exist in Java 5 (this is what you seem to be using); it was introduced with Java 7. If you are using Java 7, make sure your compiler options (in your IDE or assembly file) are set so that it accepts Java 7 syntax.
, , , 7 1, 6 1 .., , 11100000 00000111.
Java Java 7, :
byte extra_dop = (byte)0xE0;
byte extra_dop = (byte)224;
Integer.parseInt() radix 2:
byte extra_dop = (byte)Integer.parseInt("11100000", 2);
( : Byte.parseByte, 11100000, byte).