Java Byte Array Add appendByte(byte[] bytes, byte b)

Here you can find the source of appendByte(byte[] bytes, byte b)

Description

append Byte

License

Apache License

Declaration

public static byte[] appendByte(byte[] bytes, byte b) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.Arrays;

public class Main {
    public static byte[] appendByte(byte[] bytes, byte b) {
        byte[] result = Arrays.copyOf(bytes, bytes.length + 1);
        result[result.length - 1] = b;//from w  w w. ja v a  2  s .c o  m
        return result;
    }
}

Related

  1. addByteArrays(byte[] array1, byte[] array2)
  2. addByteArrays(byte[]... arrays)
  3. addBytes(byte[] array, byte[] value)
  4. addBytes(byte[] initBytes, byte[] addBytes)
  5. addBytes(byte[][] src)
  6. appendByte(byte[] bytes, byte b)