Here you can find the source of IntToByte(int i)
public static byte IntToByte(int i)
//package com.java2s; //License from project: Apache License public class Main { public static byte IntToByte(int i) { return (byte) i; }/*from w w w. jav a 2s.co m*/ }