为了账号安全,请及时绑定邮箱和手机立即绑定

同一文件 CRC32 我生成的全部是数字,网上在线生成的怎么是有英文的

同一文件 CRC32 我生成的全部是数字,网上在线生成的怎么是有英文的

蓝山帝景 2019-03-01 10:30:20
同一文件 CRC32 我生成的全部是数字,网上在线生成的怎么是有英文的,是不是我这个有问题 public static String getCRC32(File file) { CRC32 crc32 = new CRC32(); FileInputStream fileInputStream = null; try { fileInputStream = new FileInputStream(file); byte[] buffer = new byte[8192]; int length; while ((length = fileInputStream.read(buffer)) != -1) { crc32.update(buffer, 0, length); } return crc32.getValue() + ""; } catch (FileNotFoundException e) { e.printStackTrace(); return null; } catch (IOException e) { e.printStackTrace(); return null; } finally { try { if (fileInputStream != null) fileInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } }
查看完整描述

1 回答

?
撒科打诨

TA贡献1934条经验 获得超2个赞

因为你此处获得的是long类型,必然是一堆数字。。。你需要转为16进制的数字进行操作

Long.toHexString(crc32.getValue())
查看完整回答
反对 回复 2019-03-01
  • 1 回答
  • 0 关注
  • 695 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信