Here you can find the source of convertIntArrayToByteArray(int[] intArray)
Parameter | Description |
---|---|
intArray | a parameter |
public static byte[] convertIntArrayToByteArray(int[] intArray)
//package com.java2s; //License from project: Apache License import java.nio.ByteBuffer; public class Main { /**//from w ww . j a va 2s .c o m * Converts an int array to a byte array. * @param intArray * @return */ public static byte[] convertIntArrayToByteArray(int[] intArray) { if (intArray == null) return null; byte[] bytes = new byte[intArray.length * 4]; ByteBuffer byteBuffer = ByteBuffer.wrap(bytes); for (int v : intArray) { byteBuffer.putInt(v); } return bytes; } }