java short 数组转换 byte

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java short 数组转换 byte相关的知识,希望对你有一定的参考价值。

short[] s1 = new short[8];
s1[0] = 0;
s1[1] = 1;
s1[2] = 0;
s1[3] = 1;
s1[4] = 0;
s1[5] = 1;
s1[6] = 0;
s1[7] = 0;

前四个是0101 为5 ; 后 0100 为4
最后 转成 byte = 0x54
谢谢
看到了http_p的回答 , 能不能不通过String 直接用移位的方法直接 转换呢, 或者怎么样效率更高一些呢?

short[] s = 0, 1, 0, 1, 0, 1, 0, 0;
String str = "";
for(int i = 0; i < s.length; i++)//把数组转成一个字符串01010100
str += s[i];

byte b = Byte.parseByte(str, 2);//二进制字符串转成byte

b就是你想要的byte, 值为十进制84, 16进制0x54

当然也可以用位移运算

short[] s = 0, 1, 0, 1, 0, 1, 0, 0;
byte p = 0;
for(int i = 0; i < s.length; i++)
p += s[i]<<(s.length - 1 - i);

System.out.println(p);
参考技术A 前4位组成数字a、后4位组合成b
再组合起来成字符串str

再通过Integer.parstInt(str, 16) 即得到
参考技术B short[] s = 0, 1, 0, 1, 0, 1, 0, 0;
String str = "";
for(int i = 0; i < s.length; i++)//把数组转成一个字符串01010100
str += s[i];

byte b = Byte.parseByte(str, 2);//二进制字符串转成byte

b就是你想要的byte, 值为十进制84, 16进制0x54

当然也可以用位移运算

short[] s = 0, 1, 0, 1, 0, 1, 0, 0;
byte p = 0;
for(int i = 0; i < s.length; i++)
p += s[i]<<(s.length - 1 - i);

System.out.println(p);本回答被提问者采纳
参考技术C 实现起来好像不难吧。
数值计算就是乘以2的0 1 2 3次方就是了。然后大于9的就用a-f表示。。。
这,因为不难实现吧

byte数组与int,long,short,byte转换 (转载)

 

 byte数组和short数组转换

    public short bytesToShort(byte[] bytes) {
         return ByteBuffer.wrap(bytes).order(ByteOrder.LITTLE_ENDIAN).getShort();
    }
    public byte[] shortToBytes(short value) {
        return ByteBuffer.allocate(2).order(ByteOrder.LITTLE_ENDIAN).putShort(value).array();
    }

 

	public short[] byteArray2ShortArray(byte[] data, int items) {
		short[] retVal = new short[items];
		for (int i = 0; i < retVal.length; i++)
			retVal[i] = (short) ((data[i * 2] & 0xff) | (data[i * 2 + 1] & 0xff) << 8);

		return retVal;
	}

  

 

 

public class DataTypeChangeHelper {  
    /** 
     * 将一个单字节的byte转换成32位的int 
     *  
     * @param b 
     *            byte 
     * @return convert result 
     */  
    public static int unsignedByteToInt(byte b) {  
        return (int) b & 0xFF;  
    }  
  
    /** 
     * 将一个单字节的Byte转换成十六进制的数 
     *  
     * @param b 
     *            byte 
     * @return convert result 
     */  
    public static String byteToHex(byte b) {  
        int i = b & 0xFF;  
        return Integer.toHexString(i);  
    }  
  
    /** 
     * 将一个4byte的数组转换成32位的int 
     *  
     * @param buf 
     *            bytes buffer 
     * @param byte[]中开始转换的位置 
     * @return convert result 
     */  
    public static long unsigned4BytesToInt(byte[] buf, int pos) {  
        int firstByte = 0;  
        int secondByte = 0;  
        int thirdByte = 0;  
        int fourthByte = 0;  
        int index = pos;  
        firstByte = (0x000000FF & ((int) buf[index]));  
        secondByte = (0x000000FF & ((int) buf[index + 1]));  
        thirdByte = (0x000000FF & ((int) buf[index + 2]));  
        fourthByte = (0x000000FF & ((int) buf[index + 3]));  
        index = index + 4;  
        return ((long) (firstByte << 24 | secondByte << 16 | thirdByte << 8 | fourthByte)) & 0xFFFFFFFFL;  
    }  
  
    /** 
     * 将16位的short转换成byte数组 
     *  
     * @param s 
     *            short 
     * @return byte[] 长度为2 
     * */  
    public static byte[] shortToByteArray(short s) {  
        byte[] targets = new byte[2];  
        for (int i = 0; i < 2; i++) {  
            int offset = (targets.length - 1 - i) * 8;  
            targets[i] = (byte) ((s >>> offset) & 0xff);  
        }  
        return targets;  
    }  
  
    /** 
     * 将32位整数转换成长度为4的byte数组 
     *  
     * @param s 
     *            int 
     * @return byte[] 
     * */  
    public static byte[] intToByteArray(int s) {  
        byte[] targets = new byte[2];  
        for (int i = 0; i < 4; i++) {  
            int offset = (targets.length - 1 - i) * 8;  
            targets[i] = (byte) ((s >>> offset) & 0xff);  
        }  
        return targets;  
    }  
  
    /** 
     * long to byte[] 
     *  
     * @param s 
     *            long 
     * @return byte[] 
     * */  
    public static byte[] longToByteArray(long s) {  
        byte[] targets = new byte[2];  
        for (int i = 0; i < 8; i++) {  
            int offset = (targets.length - 1 - i) * 8;  
            targets[i] = (byte) ((s >>> offset) & 0xff);  
        }  
        return targets;  
    }  
  
    /**32位int转byte[]*/  
    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;  
    }  
  
    /** 
     * 将长度为2的byte数组转换为16位int 
     *  
     * @param res 
     *            byte[] 
     * @return int 
     * */  
    public static int byte2int(byte[] res) {  
        // res = InversionByte(res);  
        // 一个byte数据左移24位变成0x??000000,再右移8位变成0x00??0000  
        int targets = (res[0] & 0xff) | ((res[1] << 8) & 0xff00); // | 表示安位或  
        return targets;  
    }  
}  

  

以上是关于java short 数组转换 byte的主要内容,如果未能解决你的问题,请参考以下文章

VB.net 如何将bytes()字节数组转换到short型数组?

c# byte 数组 转 short数组

byte数组与int,long,short,byte转换 (转载)

将 byte[] 数组转换为长度减半的 short[] 数组

在 C++ 中将 unsigned char (byte) 数组转换为 unsigned short

为啥java虚拟机jvm要把byte和short的运算都转为int