Java Integer Create toInt(byte[] in)

Here you can find the source of toInt(byte[] in)

Description

to Int

License

Open Source License

Declaration

public static final int toInt(byte[] in) 

Method Source Code

//package com.java2s;
/*/*from   w  ww.  java2s. c  o m*/
 * The MIT License
 *
 * Copyright 2016 user.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

public class Main {
    public static final int toInt(byte in0, byte in1, byte in2, byte in3) {
        return (in0 & 0xFF) | ((in1 & 0xFF) << 8) | ((in2 & 0xFF) << 16) | ((in3 & 0xFF) << 24);
    }

    public static final int toInt(byte[] in) {
        return toInt(in[0], in[1], in[2], in[3]);
    }
}

Related

  1. toInt(byte[] bytes, int offset)
  2. toInt(byte[] data)
  3. toInt(byte[] data)
  4. toInt(byte[] data)
  5. toInt(byte[] data, int offset, int length)
  6. toInt(byte[] in)
  7. toInt(byte[] input)
  8. toInt(byte[] key)
  9. toInt(byte[] n)