Android Utililty Methods Byte Array Expand

List of utility methods to do Byte Array Expand

Description

The list of methods to do Byte Array Expand are organized into topic(s).

Method

byte[]arraybyteexpend(byte[] array, int increment)
arraybyteexpend
System.arraycopy(array, 0, array = new byte[array.length
        + increment], 0, array.length - increment);
return array;