Reverse a byte array in Android

By | May 10, 2018

Here is a simple function to reverse a byte array in android.

public static void reverse(byte[] array) {
        
        if (null == array) {
            return;
        }

        int i = 0;
        int j = array.length - 1;
        byte tmp;  
        while (j > i) {
            tmp = array[j];
            array[j] = array[i];
            array[i] = tmp;
            j--;
            i++;
    }
}

Leave a Reply

Your email address will not be published. Required fields are marked *