Here you can find the source of bytes2Hex(byte[] bytes)
Parameter | Description |
---|---|
bytes | a parameter |
public static String bytes2Hex(byte[] bytes)
//package com.java2s; public class Main { public static String bytes2Hex(byte[] bytes) { StringBuilder stringBuilder = new StringBuilder(""); if (bytes == null || bytes.length <= 0) { return null; }//from w w w. j av a 2s . com for (int i = 0; i < bytes.length; i++) { int v = bytes[i] & 0xFF; String hv = Integer.toHexString(v); if (hv.length() < 2) { stringBuilder.append(0); } stringBuilder.append(hv); } return stringBuilder.toString().toUpperCase(); } }