Java Byte Array to Short bytesToShorts(byte[] byteData)

Here you can find the source of bytesToShorts(byte[] byteData)

Description

Convert a byte array to short array.

License

Open Source License

Parameter

Parameter Description
byteData a parameter

Declaration

public static short[] bytesToShorts(byte[] byteData) 

Method Source Code

//package com.java2s;

public class Main {
    /**//from w  w  w.  j av  a 2  s.co m
     * Convert a byte array to short array.
     * 
     * @param byteData
     * @return
     */
    public static short[] bytesToShorts(byte[] byteData) {
        short[] shortData = new short[byteData.length];
        for (int i = 0; i < byteData.length; i++) {
            shortData[i] = (short) byteData[i];
        }

        return shortData;
    }
}

Related

  1. bytesToShort(final byte[] data)
  2. bytesToShort16(byte highByte, byte lowByte)
  3. bytesToShortBE(byte[] bytes, int off)
  4. bytesToShortLittleEndian(final byte[] vals, final int from)
  5. bytesToShorts(byte byteBuffer[])
  6. bytesToShorts(byte[] src, int srcPos, short[] dest, int destPos, int length, boolean bigEndian)
  7. byteToShort(byte[] b)
  8. byteToShort(byte[] byteData, boolean writeLittleEndian)
  9. byteToShort(byte[] data, int length, boolean reduceStereo)