Java Integer to Byte Array intToByteArray(int source)

Here you can find the source of intToByteArray(int source)

Description

Converts the bypassed int value to a byte array.

License

Open Source License

Parameter

Parameter Description
source The int value to be translated.

Return

Byte array representation of the bypassed int value.

Declaration

public static byte[] intToByteArray(int source) 

Method Source Code

//package com.java2s;
/*/*  w ww.  ja  v a 2  s  .c  om*/
 * gMix open source project - https://svs.informatik.uni-hamburg.de/gmix/
 * Copyright (C) 2012  Karl-Peter Fuchs
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Converts the bypassed int value to a byte array.
     * 
     * @param source   The int value to be translated.
     * @return          Byte array representation of the bypassed int value.
     */
    public static byte[] intToByteArray(int source) {

        byte[] result = new byte[4];

        for (int i = 0; i < 4; ++i) {

            result[3 - i] = (byte) ((source & (0xff << (i << 3))) >>> (i << 3));

        }

        return result;
    }
}

Related

  1. intToByteArray(int input)
  2. intToByteArray(int integer)
  3. intToByteArray(int integer)
  4. intToByteArray(int piValueToConvert, boolean pbBigEndian)
  5. intToByteArray(int pSrc, byte[] pDst, int pOffset)
  6. IntToByteArray(int val, byte[] buf, int offset)
  7. intToByteArray(int value)
  8. intToByteArray(int value)
  9. intToByteArray(int value)