INTEGER I = nowa liczba całkowita (257); bajt x = I.ByteValue (); System.out.print (x);

Integer i = new Integer(257); 

        byte x = i.byteValue();

        System.out.print(x);
WYI Walgama