中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

项城市| 嘉鱼县| 海晏县| 绥中县| 淮阳县| 榆社县| 华坪县| 嘉荫县| 孙吴县| 确山县| 镇巴县| 沛县| 潜江市| 丰宁| 通化县| 闽侯县| 耒阳市| 比如县| 普兰县| 新晃| 哈密市| 介休市| 安平县| 瑞安市| 九江县| 鄂伦春自治旗| 濮阳县| 无锡市| 前郭尔| 汝阳县| 巍山| 资兴市| 黎城县| 区。| 珲春市| 京山县| 灵寿县| 偃师市| 连山| 肃南| 安陆市|