Android Byte Array Reverse invertedByteArray(byte[] byteArr)

Here you can find the source of invertedByteArray(byte[] byteArr)

Description

inverted Byte Array

Declaration

public static byte[] invertedByteArray(byte[] byteArr) 

Method Source Code

//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;
    }
}

Related

  1. reverse(byte[] byteArray)
  2. reverseBytes(byte[] bytes)
  3. getReverseBytesInt(byte[] bb, int index)
  4. getReverseBytesLong(byte[] bb, int index)
  5. getReverseBytesShort(byte[] b, int index)