Here you can find the source of convertInt2Bytes(int data)
public static byte[] convertInt2Bytes(int data)
//package com.java2s; public class Main { public static byte[] convertInt2Bytes(int data) { byte[] bytes = new byte[] { convertInt2Byte(data) }; return bytes; }/* w w w . j a v a 2 s . c o m*/ public static byte convertInt2Byte(int data) { return (byte) (0xFF & data); } }