Here you can find the source of toByte(String hex)
public static byte toByte(String hex)
//package com.java2s; public class Main { public static byte toByte(String hex) { return (byte) Integer.parseInt(hex, 16); }/*from www . j a v a 2 s . c o m*/ }