Java Byte Array to Unsigned Int bytesToUnsignedInt(byte ib1, byte ib2)

Here you can find the source of bytesToUnsignedInt(byte ib1, byte ib2)

Description

bytes To Unsigned Int

License

Open Source License

Declaration

public static int bytesToUnsignedInt(byte ib1, byte ib2) 

Method Source Code

//package com.java2s;
/**//w ww  .j  av a 2 s. c om
 *  Copyright 2010 Yuxuan Huang. All rights reserved.
 *  
 *  This program 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 3 of the License, or
 *  (at your option) any later version.
 *
 *  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 int bytesToUnsignedInt(byte ib1, byte ib2) {
        return ((ib1 << 8) + (ib2 & 0xff)) & 0xffff;
    }
}

Related

  1. bytesToUint(byte first, byte second, byte third, byte fourth)
  2. bytesToUInt(final byte[] bytes, final int position, final int length, final int bitShiftStart, final int bitShitIncrement)
  3. bytesToUIntLE(byte[] data)
  4. bytesToUIntLong(byte[] bytes, int index)
  5. bytesToUnsignedInts(byte[] bytes)
  6. bytesToUshort(byte b1, byte b2)
  7. bytesToUshort(byte first, byte second)