java中怎么将一个int转成高位在前的byte

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中怎么将一个int转成高位在前的byte相关的知识,希望对你有一定的参考价值。

一个byte是8位,一个int是16位,int转换成byte是将前(左)8位舍弃,留后8位。
88+68=156,转换成int型2进制为0000000010011100,再强转成byte就是10011100,因为最高位为符号位,也就是表示正负的位,
所以这里的1代表负数,剩下的按照原码、补码的规则换算回来就是100,所以是-100!
参考技术A 1111111111111111111111111111111111111111111111111111111110110011
先知道是有符号位,最高位是符号位
byte是一个字节
8位
10110011
有符号位电脑计算使用补码

所以这里的10110011是补码
讲补码转化为原码
-1取反
-1:10110010
取反:11001101
-77
int
4个字节
32位
1000
0000
0000
0000
0000
0000
01001101(原码)
取反
1111
1111
1111
1111
1111
1111
10110010
加1
1111
1111
1111
1111
1111
1111
10110011(补码)
计算机运算使用的
参考技术B import java.text.ParseException;
import java.util.Arrays;
public class Test 
public static void main(String[] args) throws ParseException 
int n=0x10080402;
System.out.println(Arrays.toString(toBigEndian(n)));

static public byte[] toBigEndian(int n)
return new byte[] 
(byte)(n>>>24&0xff), (byte)(n>>>16&0xff),
(byte)(n>>>8&0xff), (byte)(n&0xff)
;

[16, 8, 4, 2]

byte[]数组和int之间的转换

这里简单记录下两种转换方式:

第一种:

1、int与byte[]之间的转换(类似的byte short,long型)

 

  1. /**  
  2.     * 将int数值转换为占四个字节的byte数组,本方法适用于(低位在前,高位在后)的顺序。 和bytesToInt()配套使用 
  3.     * @param value  
  4.     *            要转换的int值 
  5.     * @return byte数组 
  6.     */    
  7. public static byte[] intToBytes( int value )   
  8. {   
  9.     byte[] src = new byte[4];  
  10.     src[3] =  (byte) ((value>>24) & 0xFF);  
  11.     src[2] =  (byte) ((value>>16) & 0xFF);  
  12.     src[1] =  (byte) ((value>>8) & 0xFF);    
  13.     src[0] =  (byte) (value & 0xFF);                  
  14.     return src;   
  15. }  
  16.  /**  
  17.     * 将int数值转换为占四个字节的byte数组,本方法适用于(高位在前,低位在后)的顺序。  和bytesToInt2()配套使用 
  18.     */    
  19. public static byte[] intToBytes2(int value)   
  20. {   
  21.     byte[] src = new byte[4];  
  22.     src[0] = (byte) ((value>>24) & 0xFF);  
  23.     src[1] = (byte) ((value>>16)& 0xFF);  
  24.     src[2] = (byte) ((value>>8)&0xFF);    
  25.     src[3] = (byte) (value & 0xFF);       
  26.     return src;  
  27. }  


byte[]转int

 

  1. /**  
  2.     * byte数组中取int数值,本方法适用于(低位在前,高位在后)的顺序,和和intToBytes()配套使用 
  3.     *   
  4.     * @param src  
  5.     *            byte数组  
  6.     * @param offset  
  7.     *            从数组的第offset位开始  
  8.     * @return int数值  
  9.     */    
  10. public static int bytesToInt(byte[] src, int offset) {  
  11.     int value;    
  12.     value = (int) ((src[offset] & 0xFF)   
  13.             | ((src[offset+1] & 0xFF)<<8)   
  14.             | ((src[offset+2] & 0xFF)<<16)   
  15.             | ((src[offset+3] & 0xFF)<<24));  
  16.     return value;  
  17. }  
  18.   
  19.  /**  
  20.     * byte数组中取int数值,本方法适用于(低位在后,高位在前)的顺序。和intToBytes2()配套使用 
  21.     */  
  22. public static int bytesToInt2(byte[] src, int offset) {  
  23.     int value;    
  24.     value = (int) ( ((src[offset] & 0xFF)<<24)  
  25.             |((src[offset+1] & 0xFF)<<16)  
  26.             |((src[offset+2] & 0xFF)<<8)  
  27.             |(src[offset+3] & 0xFF));  
  28.     return value;  
  29. }  


第二种:

1、int与byte[]之间的转换(类似的byte short,long型)

 

  1.  /**  
  2.     * 将int数值转换为占四个字节的byte数组,本方法适用于(低位在前,高位在后)的顺序。  
  3.     * @param value  
  4.     *            要转换的int值 
  5.     * @return byte数组 
  6.     */    
  7. public static byte[] intToBytes(int value)   
  8. {   
  9.     byte[] byte_src = new byte[4];  
  10.     byte_src[3] = (byte) ((value & 0xFF000000)>>24);  
  11.     byte_src[2] = (byte) ((value & 0x00FF0000)>>16);  
  12.     byte_src[1] = (byte) ((value & 0x0000FF00)>>8);    
  13.     byte_src[0] = (byte) ((value & 0x000000FF));          
  14.     return byte_src;  
  15. }  


byte[]转int

 

    1.  /**  
    2.     * byte数组中取int数值,本方法适用于(低位在前,高位在后)的顺序。 
    3.     *   
    4.     * @param ary  
    5.     *            byte数组  
    6.     * @param offset  
    7.     *            从数组的第offset位开始  
    8.     * @return int数值  
    9.     */    
    10. public static int bytesToInt(byte[] ary, int offset) {  
    11.     int value;    
    12.     value = (int) ((ary[offset]&0xFF)   
    13.             | ((ary[offset+1]<<8) & 0xFF00)  
    14.             | ((ary[offset+2]<<16)& 0xFF0000)   
    15.             | ((ary[offset+3]<<24) & 0xFF000000));  
    16.     return value;  

以上是关于java中怎么将一个int转成高位在前的byte的主要内容,如果未能解决你的问题,请参考以下文章

netty bytebuf怎么转成byte数组

c语言 二进制的byte数组转化为int数组

java int转short

java中byte[]转换成int

在Java中如何将InputStream转成String字符串?

java编程 拿到一个byte[],怎样转成 转String字符串?