Java Byte Array to Short byte2Short(int loc, byte b[])

Here you can find the source of byte2Short(int loc, byte b[])

Description

byte Short

License

Open Source License

Declaration

public static short byte2Short(int loc, byte b[]) 

Method Source Code

//package com.java2s;
/* BioWebAuth (Biometrics for Web Authentication) is an open-source Java 
 * framework intended to provide web authentication based on BioAPI-compliant 
 * biometric software or devices./*from  w  w w  .  j  av a  2s.c  om*/
 * 
 * Copyright (c) 2005-2007 Elisardo Gonzalez Agulla <eli@gts.tsc.uvigo.es> 
 *                  & Enrique Otero Muras <eotero@gts.tsc.uvigo.es>
 *
 * This library 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; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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 library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

public class Main {
    public static short byte2Short(int loc, byte b[]) {
        short m1, m2;
        m1 = (short) (b[loc]);
        if (m1 < 0)
            m1 = (short) (256 + m1);
        m2 = (short) (b[loc + 1]);
        if (m2 < 0)
            m2 = (short) (256 + m2);
        m2 = (short) (256 * m2 + m1);
        return m2;
    }

    public static short Byte2Short(byte i) {
        short o;
        try {
            o = (short) i;
        } catch (Exception e) {
            o = 0;
        }
        return o;
    }
}

Related

  1. arr2short(byte[] arr)
  2. bufferToShort(byte[] ioBuffer)
  3. byte2short(byte[] ba)
  4. byte2short(byte[] data)
  5. byte2short(byte[] value, int offset)
  6. bytes2short(byte[] b)
  7. bytes2Short(byte[] bytes)
  8. bytes2short(byte[] bytes, int offset, boolean bigEndian)
  9. bytes2Short(byte[] input)