您好,登錄后才能下訂單哦!
一、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)大家可以留言交流。
免責(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)容。