Here you can find the source of byteToBytes(byte src)
public static byte[] byteToBytes(byte src)
//package com.java2s; public class Main { public static byte[] byteToBytes(byte src) { return new byte[] { src }; }//from w w w . j a va 2 s. co m }