Here you can find the source of bytesToShorts(byte[] byteData)
Parameter | Description |
---|---|
byteData | a parameter |
public static short[] bytesToShorts(byte[] byteData)
//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; } }