91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中byte、byte數組與int、long的轉換詳解

發布時間:2020-10-07 01:51:30 來源:腳本之家 閱讀:259 作者:PointNet 欄目:編程語言

一、Java 中 byte 和 int 之間的轉換源碼:

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

測試代碼:

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

二、Java 中 byte 數組和 int 之間的轉換源碼:

//byte 數組與 int 的相互轉換 
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) 
 }; 
} 

測試代碼:

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

三、Java 中 byte 數組和 long 之間的轉換源碼:

private static ByteBuffer buffer = ByteBuffer.allocate(8); 
//byte 數組與 long 的相互轉換 
 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(); 
 } 

測試代碼:

//測試 long 轉 byte 數組 
long long1 = 2223; 
byte[] bytesLong = longToBytes(long1); 
System.out.println("bytes=" + bytesLong);//bytes=[B@c17164 
//測試 byte 數組 轉 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) { 
  
 //測試 int 轉 byte 
 int int0 = 234; 
 byte byte0 = intToByte(int0); 
 System.out.println("byte0=" + byte0);//byte0=-22 
 //測試 byte 轉 int 
 int int1 = byteToInt(byte0); 
 System.out.println("int1=" + int1);//int1=234 
  
  
  
 //測試 int 轉 byte 數組 
 int int2 = 1417; 
 byte[] bytesInt = intToByteArray(int2); 
 System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced 
 //測試 byte 數組轉 int 
 int int3 = byteArrayToInt(bytesInt); 
 System.out.println("int3=" + int3);//int3=1417 
  
  
 //測試 long 轉 byte 數組 
 long long1 = 2223; 
 byte[] bytesLong = longToBytes(long1); 
 System.out.println("bytes=" + bytesLong);//bytes=[B@c17164 
 //測試 byte 數組 轉 long 
 long long2 = bytesToLong(bytesLong); 
 System.out.println("long2=" + long2);//long2=2223 
 } 
 
 
 //byte 與 int 的相互轉換 
 public static byte intToByte(int x) { 
 return (byte) x; 
 } 
 
 public static int byteToInt(byte b) { 
 //Java 總是把 byte 當做有符處理;我們可以通過將其和 0xFF 進行二進制與得到它的無符值 
 return b & 0xFF; 
 } 
 
 //byte 數組與 int 的相互轉換 
 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 數組與 long 的相互轉換 
 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(); 
 } 
 
} 

運行測試結果:

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

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

肇庆市| 定边县| 罗山县| 泸溪县| 九龙城区| 保康县| 天等县| 盈江县| 梧州市| 南木林县| 安塞县| 河源市| 蚌埠市| 黄山市| 门源| 邢台县| 满城县| 安龙县| 大丰市| 改则县| 句容市| 滨州市| 工布江达县| 龙岩市| 罗甸县| 阜康市| 丰镇市| 乌拉特后旗| 恩平市| 宜宾市| 凤山县| 潮安县| 于都县| 上思县| 长兴县| 抚顺市| 潞城市| 吉隆县| 龙南县| 收藏| 新津县|