Java Array Start With startWith(byte[] data, int start, byte[] find)

Here you can find the source of startWith(byte[] data, int start, byte[] find)

Description

start With

License

Mozilla Public License

Declaration

public static boolean startWith(byte[] data, int start, byte[] find) 

Method Source Code

//package com.java2s;
/*//from   w  w  w .j  av a 2  s .co  m
 The contents of this file are subject to the Mozilla Public License
 Version 1.1 (the "License"); you may not use this file except in
 compliance with the License. You may obtain a copy of the License at
 http://www.mozilla.org/MPL/
    
 Software distributed under the License is distributed on an "AS IS"
 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 License for the specific language governing rights and limitations
 under the License.
    
 The Original Code is OpenFAST.
    
 The Initial Developer of the Original Code is The LaSalle Technology
 Group, LLC.  Portions created by The LaSalle Technology Group, LLC
 are Copyright (C) The LaSalle Technology Group, LLC. All Rights Reserved.
    
 Contributor(s): Jacob Northey <jacob@lasalletech.com>
 Craig Otis <cotis@lasalletech.com>
 */

public class Main {
    public static boolean startWith(byte[] data, int start, byte[] find) {
        if (data.length - start < find.length) {
            return false;
        }
        for (int i = 0; i < find.length; i++) {
            if (data[start + i] != find[i]) {
                return false;
            }
        }
        return true;
    }
}

Related

  1. arrayStartsWith(byte[] a, byte[] b)
  2. arrayStartsWith(byte[] array, byte[] target)
  3. arrayStartsWith(final byte[] array, final byte[] str)
  4. arrayStartsWith(V[] pattern, V[] data)
  5. startWith(byte[] startWith, byte[] bytes)
  6. startWith(char[] value, char c)
  7. startWith(final byte[] aBuffer, final byte[] aPrefix)
  8. startWith(String t, String[] prefix)