Java tutorial
//package com.java2s; /* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.util.Objects; public class Main { /** * Removes value from given array if present, providing set-like behavior. */ public static String[] removeString(String[] cur, String val) { if (cur == null) { return null; } final int N = cur.length; for (int i = 0; i < N; i++) { if (Objects.equals(cur[i], val)) { String[] ret = new String[N - 1]; if (i > 0) { System.arraycopy(cur, 0, ret, 0, i); } if (i < (N - 1)) { System.arraycopy(cur, i + 1, ret, i, N - i - 1); } return ret; } } return cur; } /** * Checks if the beginnings of two byte arrays are equal. * * @param array1 the first byte array * @param array2 the second byte array * @param length the number of bytes to check * @return true if they're equal, false otherwise */ public static boolean equals(byte[] array1, byte[] array2, int length) { if (length < 0) { throw new IllegalArgumentException(); } if (array1 == array2) { return true; } if (array1 == null || array2 == null || array1.length < length || array2.length < length) { return false; } for (int i = 0; i < length; i++) { if (array1[i] != array2[i]) { return false; } } return true; } }