Here you can find the source of printBytes(byte[] bytes, int offset)
public static void printBytes(byte[] bytes, int offset)
//package com.java2s; //License from project: Open Source License public class Main { public static void printBytes(byte[] bytes, int offset) { for (int i = offset; i < bytes.length; i++) { System.out.print("(" + i + "):" + bytes[i]); }// www . j a v a 2 s. c o m System.out.println(); } }