Here you can find the source of convertInt2Byte(int data)
public static byte convertInt2Byte(int data)
//package com.java2s; public class Main { public static byte convertInt2Byte(int data) { return (byte) (0xFF & data); }//from w ww . j av a2 s . co m }