int與byte、byte[]相互轉換

一、int to byte

範圍在 -128 ~ 127之間可以直接轉換,超出這個範圍就亂了。

int i = 127;
byte b = (byte) i;
Integer i = 127;
i.byteValue();

二、byte to int

// byte to int (int仍有正負)
static int byte2Int(byte byt){
    // 直接強轉
    return (int) byt;

}
// byte to int (int無符號)
static int byte2UnsignedInt(byte byt){
    /* 與強轉的區別:強轉之後表示數值不變(不論正數、0、負數),如-120強轉後還是-120,
    ************* 但是這種方式強轉之後,正數和0也不變,但是負數會變成:輸入值+2<sup>8</sup>,如 -120 轉換後變爲136,即-120+256
    */
    return Byte.toUnsignedInt(byt);
    //return ((int) byt) & 0xFF; // Byte.toUnsignedInt(byt)就是這樣實現的
}

三、int to byte[]

方式一

低位在前高位在後
/**  
    * 將int數值轉換爲佔四個字節的byte數組,本方法適用於(低位在前,高位在後)的順序。 和bytesToInt()配套使用 
    * @param value  
    *            要轉換的int值 
    * @return byte數組 
    */    
public static byte[] intToBytes( int value )   
{   
    byte[] src = new byte[4];  
    src[3] =  (byte) ((value>>24) & 0xFF);  
    src[2] =  (byte) ((value>>16) & 0xFF);  
    src[1] =  (byte) ((value>>8) & 0xFF);    
    src[0] =  (byte) (value & 0xFF);                  
    return src;   
}  
高位在前低位在後
 /**  
    * 將int數值轉換爲佔四個字節的byte數組,本方法適用於(高位在前,低位在後)的順序。  和bytesToInt2()配套使用 
    */    
public static byte[] intToBytes2(int value)   
{   
    byte[] src = new byte[4];  
    src[0] = (byte) ((value>>24) & 0xFF);  
    src[1] = (byte) ((value>>16)& 0xFF);  
    src[2] = (byte) ((value>>8)&0xFF);    
    src[3] = (byte) (value & 0xFF);       
    return src;  
}  

方式二

低位在前高位在後
/**  
    * 將int數值轉換爲佔四個字節的byte數組,本方法適用於(低位在前,高位在後)的順序。  
    * @param value  
    *            要轉換的int值 
    * @return byte數組 
    */    
public static byte[] intToBytes(int value)   
{   
    byte[] byte_src = new byte[4];  
    byte_src[3] = (byte) ((value & 0xFF000000)>>24);  
    byte_src[2] = (byte) ((value & 0x00FF0000)>>16);  
    byte_src[1] = (byte) ((value & 0x0000FF00)>>8);    
    byte_src[0] = (byte) ((value & 0x000000FF));          
    return byte_src;  
}  

三、byte[] to int

方式一

低位在前高位在後
/**  
    * byte數組中取int數值,本方法適用於(低位在前,高位在後)的順序,和和intToBytes()配套使用 
    *   
    * @param src  
    *            byte數組  
    * @param offset  
    *            從數組的第offset位開始  
    * @return int數值  
    */    
public static int bytesToInt(byte[] src, int offset) {  
    int value;    
    value = (int) ((src[offset] & 0xFF)   
            | ((src[offset+1] & 0xFF)<<8)   
            | ((src[offset+2] & 0xFF)<<16)   
            | ((src[offset+3] & 0xFF)<<24));  
    return value;  
}  
高位在前低位在後
/**  
    * byte數組中取int數值,本方法適用於(低位在後,高位在前)的順序。和intToBytes2()配套使用 
    */  
public static int bytesToInt2(byte[] src, int offset) {  
    int value;    
    value = (int) ( ((src[offset] & 0xFF)<<24)  
            |((src[offset+1] & 0xFF)<<16)  
            |((src[offset+2] & 0xFF)<<8)  
            |(src[offset+3] & 0xFF));  
    return value;  
}  

方式二

低位在前高位在後
 /**  
    * byte數組中取int數值,本方法適用於(低位在前,高位在後)的順序。 
    *   
    * @param ary  
    *            byte數組  
    * @param offset  
    *            從數組的第offset位開始  
    * @return int數值  
    */    
public static int bytesToInt(byte[] ary, int offset) {  
    int value;    
    value = (int) ((ary[offset]&0xFF)   
            | ((ary[offset+1]<<8) & 0xFF00)  
            | ((ary[offset+2]<<16)& 0xFF0000)   
            | ((ary[offset+3]<<24) & 0xFF000000));  
    return value;  
}  

參考:
byte與int強制轉換
【轉】java中byte, int的轉換, byte String轉換
byte[]數組和int之間的轉換

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章