Here you can find the source of invertedByteArray(byte[] byteArr)
public static byte[] invertedByteArray(byte[] byteArr)
//package com.java2s; public class Main { public static byte[] invertedByteArray(byte[] byteArr) { final int size = byteArr.length; byte temp; for (int i = 0; i < size / 2; i++) { temp = byteArr[size - 1 - i]; byteArr[size - 1 - i] = byteArr[i]; byteArr[i] = temp;//from w w w . j a v a 2 s.c o m } return byteArr; } }