Android Byte Array Merge byteMerger(byte[] byte_1, byte[] byte_2)

Here you can find the source of byteMerger(byte[] byte_1, byte[] byte_2)

Description

byte Merger

Declaration

public static byte[] byteMerger(byte[] byte_1, byte[] byte_2) 

Method Source Code

//package com.java2s;

public class Main {

    public static byte[] byteMerger(byte[] byte_1, byte[] byte_2) {
        byte[] byte_3 = new byte[byte_1.length + byte_2.length];
        System.arraycopy(byte_1, 0, byte_3, 0, byte_1.length);
        System.arraycopy(byte_2, 0, byte_3, byte_1.length, byte_2.length);
        return byte_3;
    }/* w  w w.ja v a2  s.  c  om*/
}

Related

  1. concat(byte[] b1, byte[] b2)
  2. byteMerge(byte[][] inp)