java int to byte and long to byte
<br/>
In network programming, due to the need to save bandwidth or encoding, it is usually necessary to process long and int natively instead of converting to string.
public class ByteOrderUtils {
public static byte[] int2byte(int res) { <br/>byte[] targets = new byte[4]; <br/><br/>targets[3] = (byte) (res & 0xff); // lowest Bit <br/>targets[2] = (byte) ((res >> 8) & 0xff);// Second low bit <br/>targets[1] = (byte) ((res >> 16) & 0xff);/ / Second highest bit <br/>targets[0] = (byte) (res >>> 24); // Highest bit, unsigned right shift. <br/>return targets; <br/>}
public static int byteArrayToInt(byte[] b){ <br/>byte[] a = new byte[4]; <br/>int i = a.length - 1,j = b.length - 1; <br/> for (; i >= 0 ; i--,j--) {//Copy data starting from the tail of b (that is, the low bit of the int value) <br/>if(j >= 0) <br/>a[i] = b [j]; <br/>else <br/>a[i] = 0;//If b.length is less than 4, fill the high bit with 0 <br/>} <br/>int v0 = (a[0] & 0xff) << 24;// &0xff converts the byte value into int without any difference to avoid Java's automatic type promotion and retain the high-order sign bit <br/>int v1 = (a[1] & 0xff) << 16; <br/>int v2 = (a[2] & 0xff) << 8; <br/>int v3 = (a[3] & 0xff) ; <br/>return v0 + v1 + v2 + v3; <br/>}<br/><br/>public static byte[] long2byte(long res) { <br/>byte[ ] buffer = new byte[8]; <br/>for (int i = 0; i < 8; i++) { <br/>int offset = 64 - (i + 1) * 8; <br/>buffer[i] = (byte) (( res >> offset) & 0xff); <br/>}<br/>return buffer;<br/>}
public static long byteArrayToLong(byte[] b){ <br/>long values = 0; <br/>for (int i = 0; i < 8 ; i++) { <br/>values <<= 8; values|= (b[i] & 0xff); <br/>} <br/>return values; <br/>}
}
<br/>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
