Mega Code Archive

 
Categories / Java / Collections Data Structure
 

Gets the subarray from array that starts at offset

/*  * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.  *  * Licensed under the Aduna BSD-style license.  */ public class Utils {   /**    * Gets the subarray from <tt>array</tt> that starts at <tt>offset</tt>.    */   public static byte[] get(byte[] array, int offset) {     return get(array, offset, array.length - offset);   }   /**    * Gets the subarray of length <tt>length</tt> from <tt>array</tt>    * that starts at <tt>offset</tt>.    */   public static byte[] get(byte[] array, int offset, int length) {     byte[] result = new byte[length];     System.arraycopy(array, offset, result, 0, length);     return result;   } }