Hi.
I'm looking for a way to convert hex to ascii in Java. An example:
byte temps[] = new byte[4];
temps[0] = 0x74;
temps[1] = 0x65;
temps[2] = 0x73;
temps[3] = 0x74;
String foo = ..(temps);
System.out.print(foo);
That should output "test". Anyone an idea?
I appreciate every help!