Java Long to Byte Array longToByteArray(long source)

Here you can find the source of longToByteArray(long source)

Description

Converts the bypassed long value to a byte array.

License

Open Source License

Parameter

Parameter Description
source The long value to be translated.

Return

Byte array representation of the bypassed long value.

Declaration

public static byte[] longToByteArray(long source) 

Method Source Code

//package com.java2s;
/*/*w w  w.j  a v  a 2 s.c  o  m*/
 * 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 long value to a byte array.
     * 
     * @param source   The long value to be translated.
     * @return          Byte array representation of the bypassed long value.
     */
    public static byte[] longToByteArray(long source) {

        byte[] result = new byte[8];

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

            result[i] = new Long((source >> (i << 3)) & 255L).byteValue();

        }

        return result;
    }
}

Related

  1. longToByteArray(long l)
  2. longToByteArray(long l)
  3. longToByteArray(long longHi, long longLo, byte[] array, int offset)
  4. longToByteArray(long number)
  5. longToByteArray(long pSrc, byte[] pDst, int pOffset)
  6. longToByteArray(long v)
  7. longToByteArray(long value)
  8. longToByteArray(long value)
  9. longToByteArray(long value)