java常用方法
时间:2014-03-05 06:28:41
收藏:0
阅读:489
public static int byte2int(byte b) { int i = b & 0x07f; if (b < 0) { i |= 0x80; } return i; }
原文:http://www.cnblogs.com/jieyuefeng/p/3580561.html
评论(0)