Here you can find the source of hexStringToBytes(String hexString)
public static byte[] hexStringToBytes(String hexString)
//package com.java2s; public class Main { public static byte[] hexStringToBytes(String hexString) { if (hexString == null || hexString.equals("")) { return null; }/*from w w w . j a v a2s .co m*/ hexString = hexString.toUpperCase(); int length = hexString.length() / 2; char[] hexChars = hexString.toCharArray(); byte[] d = new byte[length]; for (int i = 0; i < length; i++) { int pos = i * 2; d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1])); } return d; } private static byte charToByte(char c) { return (byte) "0123456789ABCDEF".indexOf(c); } }