java中byte數組與int類型的轉換(兩種方式),byteint

來源:互聯網
上載者:User

java中byte數組與int類型的轉換(兩種方式),byteint

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

方法一

/** * int到byte[] * @param i * @return */public static byte[] intToByteArray(int i) {byte[] result = new byte[4];// 由高位到低位result[0] = (byte) ((i >> 24) & 0xFF);result[1] = (byte) ((i >> 16) & 0xFF);result[2] = (byte) ((i >> 8) & 0xFF);result[3] = (byte) (i & 0xFF);return result;}/** * byte[]轉int * @param bytes * @return */public static int byteArrayToInt(byte[] bytes) {int value = 0;// 由高位到低位for (int i = 0; i < 4; i++) {int shift = (4 - 1 - i) * 8;value += (bytes[i] & 0x000000FF) << shift;// 往高位遊}return value;}public static void main(String[] args) {byte[] b = intToByteArray(128);System.out.println(Arrays.toString(b));int i = byteArrayToInt(b);System.out.println(i);}

方法二

/** * 此方法可以對string類型,float類型,char類型等 來與 byte類型的轉換 * @param args */public static void main(String[] args) {ByteArrayOutputStream baos = new ByteArrayOutputStream();DataOutputStream dos = new DataOutputStream(baos);try {// int轉換byte數組dos.writeByte(-12);dos.writeLong(12);dos.writeChar('1');dos.writeFloat(1.01f);dos.writeUTF("好");} catch (IOException e) {e.printStackTrace();}byte[] aa = baos.toByteArray();ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());DataInputStream dis = new DataInputStream(bais);// byte轉換inttry { System.out.println(dis.readByte()); System.out.println(dis.readLong()); System.out.println(dis.readChar()); System.out.println(dis.readFloat()); System.out.println(dis.readUTF());} catch (IOException e) {e.printStackTrace();}try {dos.close();dis.close();} catch (IOException e) {e.printStackTrace();}}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.