Here you can find the source of intToByte(int i)
public static Byte intToByte(int i)
//package com.java2s; //License from project: LGPL public class Main { public static Byte intToByte(int i) { if (i >= Byte.MIN_VALUE && i <= Byte.MAX_VALUE) { return (byte) i; }/* w w w. j a v a 2 s. c o m*/ return null; } public static byte intToByte(int i, byte defaultValue) { if (i >= Byte.MIN_VALUE && i <= Byte.MAX_VALUE) { return (byte) i; } return defaultValue; } }