Here you can find the source of bytesToData(byte[][] fileData)
public static byte[][] bytesToData(byte[][] fileData)
//package com.java2s; public class Main { public static byte[][] bytesToData(byte[][] fileData) { byte[][] data = new byte[fileData.length / 2][]; for (int i = 1; i < fileData.length; i += 2) { data[i / 2] = fileData[i];/*from w ww . j av a2 s . c o m*/ } return data; } }