【轉】java中byte數組與int類型的轉換(兩種方式)----不錯

來源:互聯網
上載者:User

標籤:

原文網址:http://blog.csdn.net/piaojun_pj/article/details/5903009

  java中byte數組與int類型的轉換,在網路編程中這個演算法是最基本的演算法,我們都知道,在socket傳輸中,發送、者接收的資料都是 byte數組,但是int類型是4個byte組成的,如何把一個整形int轉換成byte數組,同時如何把一個長度為4的byte數群組轉換為int類型。下面有兩種方式。

 

第一種方法:

public static byte[] int2byte(int res) {

byte[] targets = new byte[4];

targets[0] = (byte) (res & 0xff);// 最低位 
targets[1] = (byte) ((res >> 8) & 0xff);// 次低位 
targets[2] = (byte) ((res >> 16) & 0xff);// 次高位 
targets[3] = (byte) (res >>> 24);// 最高位,無符號右移。 
return targets; 


public static int byte2int(byte[] res) { 
// 一個byte資料左移24位變成0x??000000,再右移8位變成0x00??0000 

int targets = (res[0] & 0xff) | ((res[1] << 8) & 0xff00) // | 表示安位或 
| ((res[2] << 24) >>> 8) | (res[3] << 24); 
return targets; 
}

第二種方法:
public static byte[] intToByteArray(int i) throws Exception { 
ByteArrayOutputStream buf = new ByteArrayOutputStream(); 
DataOutputStream dos= new DataOutputStream(buf); 
dos.writeInt(i); 
byte[] b = buf.toByteArray(); 
dos.close(); 
buf.close(); 
return b; 


public static int ByteArrayToInt(byte b[]) throws Exception { 
int temp = 0, a=0; 
ByteArrayInputStream buf = new ByteArrayInputStream(b);

DataInputStream dis= new DataInputStream (buf); 
return dis.readInt();

}

 

 個人感覺第二種方法更加常用,而且可以更加容易的實現位元組數組與其他基礎資料型別 (Elementary Data Type)(long,float······)之間的相互轉換。

【轉】java中byte數組與int類型的轉換(兩種方式)----不錯

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.