* Description: 负数byte转正int <BR> * * @author dsn * @date 2018年12月29日 下午3:29:38 * @param b * @return * @version 1.0 */ public static Integer byteToInteger(Byte b) { return 0xff & b; }
对了,小编为大家准备了一套2020最新的Java资料,需要点击下方链接获取方式
原文:https://www.cnblogs.com/coderjava/p/13221150.html