Here you can find the source of hexStringToByteArray(String hex)
public static byte[] hexStringToByteArray(String hex)
//package com.java2s; //License from project: Open Source License import javax.xml.bind.DatatypeConverter; public class Main { public static byte[] hexStringToByteArray(String hex) { return DatatypeConverter.parseHexBinary(hex); }// ww w.j a va 2 s. c o m }