摘要: 下面是将byte数组转换为float的实现 public static float getFloat(byte[] b) { int accum = 0; accum = accum|(b[0] & 0xff) << 0; accum = accu... 阅读全文
posted @ 2014-08-12 17:49 Livingstone 阅读(26100) 评论(0) 推荐(1) 编辑