摘要: public static long bytesToLong(byte[] bytes) { ByteBuffer buffer = ByteBuffer.allocate(8); buffer.put(bytes, 0, bytes.length); buffer.flip(); return b 阅读全文
posted @ 2021-11-17 16:52 yongfengnice 阅读(868) 评论(0) 推荐(0)