Here you can find the source of intAsLittleEnd(byte[] a, int i, int v)
public static byte[] intAsLittleEnd(byte[] a, int i, int v)
//package com.java2s; public class Main { /**// w w w. jav a 2 s . c o m * Converts an int value to an array in little-endian format. * \param val The value to be converted. * \returns A byte array with the value in little-endian format. **/ public static byte[] intAsLittleEnd(int val) { byte[] array = new byte[4]; return intAsLittleEnd(array, 0, val); } /** * Convert an int value into an array in little-endian format, copying the * result in the passed array at the point especified. * \param a The array where the converted value should be copied. * \param i The starting point, int the array \a a where the copy should * start. * \param v The value to be converted and copied. * \returns \a a. **/ public static byte[] intAsLittleEnd(byte[] a, int i, int v) { a[i + 3] = (byte) (0xFF & (v >> 24)); a[i + 2] = (byte) (0xFF & (v >> 16)); a[i + 1] = (byte) (0xFF & (v >> 8)); a[i + 0] = (byte) (0xFF & v); return a; } }