Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
public class MyClass { public static void main(String args[]) { byte[] bytes = {74, 97, 118, 97}; for (byte ch : bytes) { System.out.print(Integer.toHexString(ch) + " "); } } } /* run: 4a 61 76 61 */
public class MyClass { public static void main(String args[]) { byte[] bytes = {74, 97, 118, 97}; for (byte ch : bytes) { System.out.print(String.format("%02X ", ch)); } } } /* run: 4A 61 76 61 */