目前,我有一种在Java 5中调用String.format()的方法,并且运行良好

String.format("%02x", octet) //octet is a int type

但是由于某些问题,我们需要在JDK 1.4环境中部署此代码,而String.format在1.4中不存在。

任何人都知道执行此功能的任何其他方法吗?

最佳答案

您可以使用以下代码段:

String hexString = Integer.toHexString(octet);
if (hexString.length() < 2) {
    hexString = "0" + hexString;
}

09-16 07:19