Java Long to Byte Array longToBytes(long num)

Here you can find the source of longToBytes(long num)

Description

long To Bytes

License

Open Source License

Declaration

public static byte[] longToBytes(long num) 

Method Source Code

//package com.java2s;

public class Main {

    public static byte[] longToBytes(long num) {
        byte[] bytes = new byte[8];
        for (int i = 0; i < 8; i++) {
            bytes[i] = (byte) (0xff & (num >> (i * 8)));
        }//from  ww  w  . j av a2s .co  m

        return bytes;
    }
}

Related

  1. longToBytes(long ldata, int n)
  2. longToBytes(long lnum, byte[] bytes, int startIndex)
  3. longToBytes(long n)
  4. longToBytes(long n)
  5. longToBytes(long n, byte b[], int offset)
  6. longToBytes(long num, byte[] data, int index)
  7. longToBytes(long number)
  8. longToBytes(long v)
  9. longToBytes(long v)