Here you can find the source of intToBytesLE(int value, byte[] buffer, int offset, int length)
Parameter | Description |
---|---|
value | the value that is to be converted. |
buffer | the byte array that is to contain the byte sequence. |
offset | the offset to buffer at which the sequence is to start. |
length | the required length of the byte sequence. |
private static void intToBytesLE(int value, byte[] buffer, int offset, int length)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from www . j a va2 s . c o m*/ * Converts an {@code int} to a little-endian sequence of bytes of the specified length. * * @param value the value that is to be converted. * @param buffer the byte array that is to contain the byte sequence. * @param offset the offset to {@code buffer} at which the sequence is to start. * @param length the required length of the byte sequence. * @since 1.0 * @see #intToBytesBE(int, byte[], int, int) * @see #bytesToIntLE(byte[], int, int, boolean) */ private static void intToBytesLE(int value, byte[] buffer, int offset, int length) { int endOffset = offset + length; for (int i = offset; i < endOffset; ++i) { buffer[i] = (byte) value; value >>>= 8; } } }