溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java中byte、byte數(shù)組與int、long的轉(zhuǎn)換詳解

發(fā)布時(shí)間:2020-10-07 01:51:30 來(lái)源:腳本之家 閱讀:259 作者:PointNet 欄目:編程語(yǔ)言

一、Java 中 byte 和 int 之間的轉(zhuǎn)換源碼:

//byte 與 int 的相互轉(zhuǎn)換 
public static byte intToByte(int x) { 
 return (byte) x; 
} 
 
public static int byteToInt(byte b) { 
 //Java 總是把 byte 當(dāng)做有符處理;我們可以通過(guò)將其和 0xFF 進(jìn)行二進(jìn)制與得到它的無(wú)符值 
 return b & 0xFF; 
} 

測(cè)試代碼:

//測(cè)試 int 轉(zhuǎn) byte 
int int0 = 234; 
byte byte0 = intToByte(int0); 
System.out.println("byte0=" + byte0);//byte0=-22 
//測(cè)試 byte 轉(zhuǎn) int 
int int1 = byteToInt(byte0); 
System.out.println("int1=" + int1);//int1=234 

二、Java 中 byte 數(shù)組和 int 之間的轉(zhuǎn)換源碼:

//byte 數(shù)組與 int 的相互轉(zhuǎn)換 
public static int byteArrayToInt(byte[] b) { 
 return b[3] & 0xFF | 
  (b[2] & 0xFF) << 8 | 
  (b[1] & 0xFF) << 16 | 
  (b[0] & 0xFF) << 24; 
} 
 
public static byte[] intToByteArray(int a) { 
 return new byte[] { 
 (byte) ((a >> 24) & 0xFF), 
 (byte) ((a >> 16) & 0xFF), 
 (byte) ((a >> 8) & 0xFF), 
 (byte) (a & 0xFF) 
 }; 
} 

測(cè)試代碼:

//測(cè)試 int 轉(zhuǎn) byte 數(shù)組 
int int2 = 1417; 
byte[] bytesInt = intToByteArray(int2); 
System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced 
//測(cè)試 byte 數(shù)組轉(zhuǎn) int 
int int3 = byteArrayToInt(bytesInt); 
System.out.println("int3=" + int3);//int3=1417 

三、Java 中 byte 數(shù)組和 long 之間的轉(zhuǎn)換源碼:

private static ByteBuffer buffer = ByteBuffer.allocate(8); 
//byte 數(shù)組與 long 的相互轉(zhuǎn)換 
 public static byte[] longToBytes(long x) { 
 buffer.putLong(0, x); 
 return buffer.array(); 
 } 
 
 public static long bytesToLong(byte[] bytes) { 
 buffer.put(bytes, 0, bytes.length); 
 buffer.flip();//need flip 
 return buffer.getLong(); 
 } 

測(cè)試代碼:

//測(cè)試 long 轉(zhuǎn) byte 數(shù)組 
long long1 = 2223; 
byte[] bytesLong = longToBytes(long1); 
System.out.println("bytes=" + bytesLong);//bytes=[B@c17164 
//測(cè)試 byte 數(shù)組 轉(zhuǎn) long 
long long2 = bytesToLong(bytesLong); 
System.out.println("long2=" + long2);//long2=2223 

四、整體工具類源碼:

import java.nio.ByteBuffer; 
 
 
public class Test { 
 
 private static ByteBuffer buffer = ByteBuffer.allocate(8); 
 
 public static void main(String[] args) { 
  
 //測(cè)試 int 轉(zhuǎn) byte 
 int int0 = 234; 
 byte byte0 = intToByte(int0); 
 System.out.println("byte0=" + byte0);//byte0=-22 
 //測(cè)試 byte 轉(zhuǎn) int 
 int int1 = byteToInt(byte0); 
 System.out.println("int1=" + int1);//int1=234 
  
  
  
 //測(cè)試 int 轉(zhuǎn) byte 數(shù)組 
 int int2 = 1417; 
 byte[] bytesInt = intToByteArray(int2); 
 System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced 
 //測(cè)試 byte 數(shù)組轉(zhuǎn) int 
 int int3 = byteArrayToInt(bytesInt); 
 System.out.println("int3=" + int3);//int3=1417 
  
  
 //測(cè)試 long 轉(zhuǎn) byte 數(shù)組 
 long long1 = 2223; 
 byte[] bytesLong = longToBytes(long1); 
 System.out.println("bytes=" + bytesLong);//bytes=[B@c17164 
 //測(cè)試 byte 數(shù)組 轉(zhuǎn) long 
 long long2 = bytesToLong(bytesLong); 
 System.out.println("long2=" + long2);//long2=2223 
 } 
 
 
 //byte 與 int 的相互轉(zhuǎn)換 
 public static byte intToByte(int x) { 
 return (byte) x; 
 } 
 
 public static int byteToInt(byte b) { 
 //Java 總是把 byte 當(dāng)做有符處理;我們可以通過(guò)將其和 0xFF 進(jìn)行二進(jìn)制與得到它的無(wú)符值 
 return b & 0xFF; 
 } 
 
 //byte 數(shù)組與 int 的相互轉(zhuǎn)換 
 public static int byteArrayToInt(byte[] b) { 
 return b[3] & 0xFF | 
  (b[2] & 0xFF) << 8 | 
  (b[1] & 0xFF) << 16 | 
  (b[0] & 0xFF) << 24; 
 } 
 
 public static byte[] intToByteArray(int a) { 
 return new byte[] { 
  (byte) ((a >> 24) & 0xFF), 
  (byte) ((a >> 16) & 0xFF), 
  (byte) ((a >> 8) & 0xFF), 
  (byte) (a & 0xFF) 
 }; 
 } 
 
 //byte 數(shù)組與 long 的相互轉(zhuǎn)換 
 public static byte[] longToBytes(long x) { 
 buffer.putLong(0, x); 
 return buffer.array(); 
 } 
 
 public static long bytesToLong(byte[] bytes) { 
 buffer.put(bytes, 0, bytes.length); 
 buffer.flip();//need flip 
 return buffer.getLong(); 
 } 
 
} 

運(yùn)行測(cè)試結(jié)果:

byte0=-22
int1=234
bytesInt=[B@de6ced
int3=1417
bytes=[B@c17164
long2=2223

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,如果有疑問(wèn)大家可以留言交流。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI