Java Byte to Hex String (Java in General forum at JavaRanch)
String.format("%02X", myByte) Would probably work. Maybe Integer.toHexString(myByte) though I am not sure that does the leading zero... Steve Scott Selikoff author Saloon Keeper Joined: Oct 23, 2005 Posts: 3740...