摘要: public static long byteToLong(byte[] value) { long temp = 0; for (int i = 0; i < value.length; i++) { temp = (temp | value[i]) << 8; } return temp; } 阅读全文
posted @ 2016-03-26 15:26 彩虹下的约定 阅读(749) 评论(0) 推荐(0) 编辑