Here you can find the source of bytes2int(byte[] src)
public static int bytes2int(byte[] src)
//package com.java2s; /*// www. j a va 2s . co m * Copyright (c) 2012-2014 RONDHUIT Co.,Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ public class Main { public static int bytes2int(byte[] src) { return bytes2int(src, 0, src.length); } public static int bytes2int(byte[] src, int offset, int length) { if (length == 2) { int val = src[offset + 0] & 0xFF; return (val << 8) + (src[offset + 1] & 0xFF); } else if (length == 4) { int val = src[offset + 0] & 0xFF; val = (val << 8) + (src[offset + 1] & 0xFF); val = (val << 8) + (src[offset + 2] & 0xFF); return (val << 8) + (src[offset + 3] & 0xFF); } else { throw new IllegalArgumentException("invalid length of src byte array"); } } }