Commit 5b04f123 authored by 张永's avatar 张永

加个方法

parent 793adda4
......@@ -1090,4 +1090,20 @@ public class StringUtil {
}
return out.toString();
}
/**
*
* @Description 字节数组转16进制字符串
* @param bytes
* @return
* @author 曲欣亮
* @date 2016年4月25日
* @since 2016年4月25日
* @return String
* @throws
*/
public static String bytesToHex(byte[] bytes) {
return Hex.encodeHexString(bytes);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment