Java Byte Array to Int bytesToInt(byte abyte0[], int i, int j)

Here you can find the source of bytesToInt(byte abyte0[], int i, int j)

Description

bytes To Int

License

Open Source License

Declaration

public static final int bytesToInt(byte abyte0[], int i, int j) 

Method Source Code

//package com.java2s;
/*/*  w w w.  j av a  2s.  c o  m*/
 * 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 final int bytesToInt(byte abyte0[], int i, int j) {
        int k = 0;
        for (int l = 0; l < j; l++)
            k = k << 8 | abyte0[l + i] & 0xff;

        return k;
    }
}

Related

  1. bytes2LengthToIntLowOrder(byte[] intBytes)
  2. bytes2ToInt(byte[] inputValues)
  3. Bytes2Uint32(byte[] sour, int offset)
  4. bytesToInt(byte a)
  5. bytesToInt(byte A, byte B, byte C, byte D)
  6. bytesToInt(byte b1, byte b2, byte b3, byte b4)
  7. bytesToInt(byte bytes[], int start)
  8. bytesToInt(byte low, byte high)
  9. bytesToInt(byte[] array, int offset)