Entier i = nouvel entier (257); octet x = i.ByteValue (); System.out.print (x);

Integer i = new Integer(257); 

        byte x = i.byteValue();

        System.out.print(x);
WYI Walgama