Java examples for Internationalization:Charset
to Big Endian Dword
//package com.java2s; public class Main { public static void main(String[] argv) throws Exception { long value = 2; System.out.println(java.util.Arrays .toString(toBigEndianDword(value))); }// w w w. j a v a 2 s . co m public static byte[] toBigEndianDword(final long value) { return new byte[] { (byte) ((value & 0xFF000000L) >>> 24), (byte) ((value & 0x00FF0000L) >>> 16), (byte) ((value & 0x0000FF00L) >>> 8), (byte) (value & 0x000000FFL) }; } }