Java Array Merge mergeArrays(byte[] buf1, byte[] buf2)

Here you can find the source of mergeArrays(byte[] buf1, byte[] buf2)

Description

Merges two byte arrays.

License

Apache License

Parameter

Parameter Description
buf1 First byte array
buf2 Second byte array

Return

Result byte array

Declaration

public static byte[] mergeArrays(byte[] buf1, byte[] buf2) 

Method Source Code

//package com.java2s;
/*/*from w ww .ja  va 2 s .  c  o  m*/
   Copyright Isaac Levin
    
   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.
 */

public class Main {
    /**
     * Merges two byte arrays.
     * @param buf1 First byte array
     * @param buf2 Second byte array
     * @return Result byte array
     */
    public static byte[] mergeArrays(byte[] buf1, byte[] buf2) {
        byte[] resBuf = new byte[buf1.length + buf2.length];
        System.arraycopy(buf1, 0, resBuf, 0, buf1.length);
        System.arraycopy(buf2, 0, resBuf, buf1.length, buf2.length);
        return resBuf;
    }
}

Related

  1. mergeArray(final Object[] dest, final Object[]... arrays)
  2. mergeArray(String[] a, String[] b)
  3. mergeArray(T[] objs, String concatenator)
  4. mergeArrayIntoString(final Object[] array, String middleDelimiter, String lastDelimiter)
  5. mergeArrayObject(Object[] buf1, Object[] buf2)
  6. mergeArrays(byte[] first, byte[]... more)
  7. mergeArrays(final byte[] buf1, final byte[] buf2)
  8. mergeArrays(final Object[] a1, final Object[] a2, final Object[] merge)
  9. mergeArrays(int[] theArrayA, int[] theArrayB)