Here you can find the source of intArrayToByteArray(int[] intArray)
Parameter | Description |
---|---|
intArray | a parameter |
public static byte[] intArrayToByteArray(int[] intArray)
//package com.java2s; //License from project: Open Source License import java.nio.ByteBuffer; import java.nio.IntBuffer; public class Main { /**/*from w w w. j a v a 2 s . com*/ * Convert from an array of ints to an array of bytes * @param intArray */ public static byte[] intArrayToByteArray(int[] intArray) { byte[] byteArray = new byte[intArray.length * 4]; // 4 bytes per int ByteBuffer byteBuf = ByteBuffer.wrap(byteArray); IntBuffer intBuff = byteBuf.asIntBuffer(); intBuff.put(intArray); return byteArray; } }