Here you can find the source of toByte(char c)
public static byte toByte(char c)
//package com.java2s; public class Main { public static byte toByte(char c) { byte b = (byte) "0123456789ABCDEF".indexOf(c); return b; }//from w w w . j a v a 2s. c o m }