Here you can find the source of toBytes(int... byteValue)
public static byte[] toBytes(int... byteValue)
//package com.java2s; public class Main { public static byte[] toBytes(int... byteValue) { byte[] bytes = new byte[byteValue.length]; for (int i = 0; i < bytes.length; i++) { bytes[i] = toByte(byteValue[i]); }// w w w . j a v a 2 s. c om return bytes; } public static byte toByte(int byteValue) { return (byte) (byteValue & 0x000000FF); } }