Java Short Number Create toShort(byte[] byteArray)

Here you can find the source of toShort(byte[] byteArray)

Description

to Short

License

Open Source License

Declaration

public static short toShort(byte[] byteArray) 

Method Source Code

//package com.java2s;
/**//from  w w w .  j av a2  s.  c o m
 * Copyright 2007 DFKI GmbH.
 * All Rights Reserved.  Use is subject to license terms.
 *
 * This file is part of MARY TTS.
 *
 * MARY TTS is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

public class Main {
    public static short toShort(byte[] byteArray) {
        if (byteArray == null || byteArray.length != 2)
            return 0x0;
        // ----------
        return (short) ((0xff & byteArray[0]) << 8 | (0xff & byteArray[1]) << 0);
    }
}

Related

  1. toShort(byte[] b)
  2. toShort(byte[] b)
  3. toShort(byte[] b, int off, boolean bigEndian)
  4. toShort(byte[] b, int offset)
  5. toShort(byte[] buf, int pos)
  6. toShort(byte[] bytes)
  7. toShort(byte[] bytes)
  8. toShort(byte[] bytes)
  9. toShort(byte[] bytes)