如何将Text转换为HexaDecimal?

时间:2017-03-20 12:31:33

标签: java text hex converter

我正在寻找一种方式或多种方式(总是很好地了解很多方法)如何将Text(String)转换为HexaDecimal,如http://codebeautify.org/string-hex-converter

任何帮助将不胜感激。 我已经在不同的地方寻找了几个小时,到目前为止,我找不到任何可能为我做这件事的代码。

接受这一切的所有方式,我喜欢学习编码。

1 个答案:

答案 0 :(得分:0)

字符串到十六进制:

Integer.decode(hexString);

Hex to String:

Integer.toHexString(integer);