文章出處

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

 

[java] view plain copy
 
 print?
  1. //byte 與 int 的相互轉換  
  2. public static byte intToByte(int x) {  
  3.     return (byte) x;  
  4. }  
  5.   
  6. public static int byteToInt(byte b) {  
  7.     //Java 總是把 byte 當做有符處理;我們可以通過將其和 0xFF 進行二進制與得到它的無符值  
  8.     return b & 0xFF;  
  9. }  

 

 

        測試代碼:

 

[java] view plain copy
 
 print?
  1. //測試 int 轉 byte  
  2. int int0 = 234;  
  3. byte byte0 = intToByte(int0);  
  4. System.out.println("byte0=" + byte0);//byte0=-22  
  5. //測試 byte 轉 int  
  6. int int1 = byteToInt(byte0);  
  7. System.out.println("int1=" + int1);//int1=234  

 

 

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

 

[java] view plain copy
 
 print?
  1. //byte 數組與 int 的相互轉換  
  2. public static int byteArrayToInt(byte[] b) {  
  3.     return   b[3] & 0xFF |  
  4.             (b[2] & 0xFF) << 8 |  
  5.             (b[1] & 0xFF) << 16 |  
  6.             (b[0] & 0xFF) << 24;  
  7. }  
  8.   
  9. public static byte[] intToByteArray(int a) {  
  10.     return new byte[] {  
  11.         (byte) ((a >> 24) & 0xFF),  
  12.         (byte) ((a >> 16) & 0xFF),     
  13.         (byte) ((a >> 8) & 0xFF),     
  14.         (byte) (a & 0xFF)  
  15.     };  
  16. }  

 

 

        測試代碼:

 

[java] view plain copy
 
 print?
  1. //測試 int 轉 byte 數組  
  2. int int2 = 1417;  
  3. byte[] bytesInt = intToByteArray(int2);  
  4. System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced  
  5. //測試 byte 數組轉 int  
  6. int int3 = byteArrayToInt(bytesInt);  
  7. System.out.println("int3=" + int3);//int3=1417  

 

 

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

 

[java] view plain copy
 
 print?
  1. private static ByteBuffer buffer = ByteBuffer.allocate(8);   
  2. //byte 數組與 long 的相互轉換  
  3.    public static byte[] longToBytes(long x) {  
  4.        buffer.putLong(0, x);  
  5.        return buffer.array();  
  6.    }  
  7.   
  8.    public static long bytesToLong(byte[] bytes) {  
  9.        buffer.put(bytes, 0, bytes.length);  
  10.        buffer.flip();//need flip   
  11.        return buffer.getLong();  
  12.    }  

 

 

        測試代碼:

 

[java] view plain copy
 
 print?
  1. //測試 long 轉 byte 數組  
  2. long long1 = 2223;  
  3. byte[] bytesLong = longToBytes(long1);  
  4. System.out.println("bytes=" + bytesLong);//bytes=[B@c17164  
  5. //測試 byte 數組 轉 long  
  6. long long2 = bytesToLong(bytesLong);  
  7. System.out.println("long2=" + long2);//long2=2223  

 

 

        整體工具類源碼:

 

[java] view plain copy
 
 print?
  1. import java.nio.ByteBuffer;  
  2.   
  3.   
  4. public class Test {  
  5.       
  6.     private static ByteBuffer buffer = ByteBuffer.allocate(8);      
  7.   
  8.     public static void main(String[] args) {  
  9.           
  10.         //測試 int 轉 byte  
  11.         int int0 = 234;  
  12.         byte byte0 = intToByte(int0);  
  13.         System.out.println("byte0=" + byte0);//byte0=-22  
  14.         //測試 byte 轉 int  
  15.         int int1 = byteToInt(byte0);  
  16.         System.out.println("int1=" + int1);//int1=234  
  17.           
  18.           
  19.           
  20.         //測試 int 轉 byte 數組  
  21.         int int2 = 1417;  
  22.         byte[] bytesInt = intToByteArray(int2);  
  23.         System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced  
  24.         //測試 byte 數組轉 int  
  25.         int int3 = byteArrayToInt(bytesInt);  
  26.         System.out.println("int3=" + int3);//int3=1417  
  27.           
  28.           
  29.         //測試 long 轉 byte 數組  
  30.         long long1 = 2223;  
  31.         byte[] bytesLong = longToBytes(long1);  
  32.         System.out.println("bytes=" + bytesLong);//bytes=[B@c17164  
  33.         //測試 byte 數組 轉 long  
  34.         long long2 = bytesToLong(bytesLong);  
  35.         System.out.println("long2=" + long2);//long2=2223  
  36.     }  
  37.       
  38.       
  39.     //byte 與 int 的相互轉換  
  40.     public static byte intToByte(int x) {  
  41.         return (byte) x;  
  42.     }  
  43.       
  44.     public static int byteToInt(byte b) {  
  45.         //Java 總是把 byte 當做有符處理;我們可以通過將其和 0xFF 進行二進制與得到它的無符值  
  46.         return b & 0xFF;  
  47.     }  
  48.       
  49.     //byte 數組與 int 的相互轉換  
  50.     public static int byteArrayToInt(byte[] b) {  
  51.         return   b[3] & 0xFF |  
  52.                 (b[2] & 0xFF) << 8 |  
  53.                 (b[1] & 0xFF) << 16 |  
  54.                 (b[0] & 0xFF) << 24;  
  55.     }  
  56.   
  57.     public static byte[] intToByteArray(int a) {  
  58.         return new byte[] {  
  59.             (byte) ((a >> 24) & 0xFF),  
  60.             (byte) ((a >> 16) & 0xFF),     
  61.             (byte) ((a >> 8) & 0xFF),     
  62.             (byte) (a & 0xFF)  
  63.         };  
  64.     }  
  65.   
  66.     //byte 數組與 long 的相互轉換  
  67.     public static byte[] longToBytes(long x) {  
  68.         buffer.putLong(0, x);  
  69.         return buffer.array();  
  70.     }  
  71.   
  72.     public static long bytesToLong(byte[] bytes) {  
  73.         buffer.put(bytes, 0, bytes.length);  
  74.         buffer.flip();//need flip   
  75.         return buffer.getLong();  
  76.     }  
  77.   
  78. }  

 

 

        運行測試結果:
byte0=-22
int1=234
bytesInt=[B@de6ced
int3=1417
bytes=[B@c17164
long2=2223
參考文章1:http://stackoverflow.com/questions/7401550/how-to-convert-int-to-unsigned-byte-and-back
參考文章2:http://stackoverflow.com/questions/1936857/convert-integer-into-byte-array-java
參考文章3:http://stackoverflow.com/questions/4485128/how-do-i-convert-long-to-byte-and-back-in-java


文章列表




Avast logo

Avast 防毒軟體已檢查此封電子郵件的病毒。
www.avast.com


arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()