Here you can find the source of byteArray2Int1(byte[] b)
public static final int byteArray2Int1(byte[] b)
//package com.java2s; public class Main { public static final int byteArray2Int1(byte[] b) { return (b[0] & 0xFF); }/* ww w .j a va 2 s .c o m*/ }