Here you can find the source of toByte(String value, byte defaultValue)
public static byte toByte(String value, byte defaultValue)
//package com.java2s; public class Main { public static byte toByte(String value, byte defaultValue) { try {//w w w . j a v a 2 s . c om return Byte.parseByte(value); } catch (Exception e) { return defaultValue; } } }