16进制一般针对无法显示的一些二进制进行显示,常用于: 1、图片的字符串表现形式 2、加密解密 3、编码转换。
HexUtil
主要以encodeHex
和decodeHex
两个方法为核心,提供一些针对字符串的重载方法。
importcn.hutool.core.util.HexUtil; publicclassTest { publicstaticvoidmain(String[] args) { Stringstr="hello world"; Stringhex=HexUtil.encodeHexStr(str); System.out.println(hex); StringdecodedStr=HexUtil.decodeHexStr(hex); System.out.println(decodedStr); } }